Skip to content

Commit

Permalink
misc: use default features by default
Browse files Browse the repository at this point in the history
  • Loading branch information
nichmor committed Nov 15, 2024
1 parent 30dc6c4 commit 9a66138
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 115 deletions.
109 changes: 5 additions & 104 deletions Cargo.lock

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

21 changes: 10 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -143,18 +143,17 @@ async-recursion = "1.1.1"
# rattler_virtual_packages = { version = "1.1.8", default-features = false }
# rattler_package_streaming = { version = "0.22.11", default-features = false }
rattler = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false, features = ["cli-tools", "indicatif"]}
rattler_conda_types = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" }
rattler_cache = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" }
rattler_digest = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" , features = ["serde"]}
rattler_lock = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" }
rattler_networking = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" }
rattler_package_streaming = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" }
rattler_repodata_gateway = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", features = ["gateway"] }
rattler_conda_types = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false }
rattler_cache = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false}
rattler_digest = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" , default-features = false, features = ["serde"]}
rattler_networking = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false}
rattler_package_streaming = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false}
rattler_repodata_gateway = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false, features = ["gateway"] }
rattler_redaction = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" }
rattler_index = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" }
rattler_shell = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", features = ["sysinfo"]}
rattler_solve = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" , features = ["resolvo", "serde"]}
rattler_virtual_packages = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" }
rattler_index = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false}
rattler_shell = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false, features = ["sysinfo"]}
rattler_solve = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build" , default-features = false, features = ["resolvo", "serde"]}
rattler_virtual_packages = { git = "https://github.com/conda/rattler", branch = "feat/pixi-build", default-features = false}


lazy_static = "1.5.0"
Expand Down

0 comments on commit 9a66138

Please sign in to comment.