Skip to content

Commit

Permalink
fix: add default features
Browse files Browse the repository at this point in the history
  • Loading branch information
tdejager committed Sep 26, 2023
1 parent a341c9d commit ed2575e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions crates/index/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ rust-version.workspace = true

[features]
default = ["native-tls"]
native-tls = ['rattler_installs_packages/native-tls']
rustls-tls = ['rattler_installs_packages/rustls-tls']
native-tls = ['rattler_installs_packages/native-tls', 'rip_bin/native-tls']
rustls-tls = ['rattler_installs_packages/rustls-tls', 'rip_bin/rustls-tls']

[dependencies]
clap = { version = "4.4.5", features = ["derive"] }
Expand All @@ -29,7 +29,7 @@ tokio = { version = "1.32.0", features = ["rt", "macros", "rt-multi-thread"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
url = "2.4.1"
rip_bin = { path = "../rip_bin" }
rip_bin = { path = "../rip_bin", default-features = false }


[package.metadata.release]
Expand Down
3 changes: 1 addition & 2 deletions crates/rip_bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ indexmap = "2.0.0"
indicatif = "0.17.6"
itertools = "0.11.0"
miette = { version = "5.10.0", features = ["fancy"] }
rattler_installs_packages = { path = "../rattler_installs_packages", features = ["resolvo-pypi"] }
rattler_installs_packages = { path = "../rattler_installs_packages", default-features = false, features = ["resolvo-pypi"] }
resolvo = "0.1.0"
tabwriter = { version = "1.2.1", features = ["ansi_formatting"] }
tokio = { version = "1.29.1", features = ["rt", "macros", "rt-multi-thread"] }
Expand All @@ -36,7 +36,6 @@ url = "2.4.0"
rand = "0.8.4"
serde = "1.0.188"
serde_json = "1.0.107"
rusqlite = { version = "0.29.0", features = ["bundled"] }

[package.metadata.release]
# Dont publish the binary
Expand Down

0 comments on commit ed2575e

Please sign in to comment.