mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-20 20:48:43 +00:00
Make disabling static and rustls features possible (#782)
Default features were turned on for binstalk and the `static` and `pkg-config` features of cargo-binstall didn't do anything
This commit is contained in:
parent
d9dd611b9e
commit
ff753f06f2
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ pkg-fmt = "zip"
|
||||||
pkg-fmt = "zip"
|
pkg-fmt = "zip"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
binstalk = { path = "../binstalk", version = "0.7.1" }
|
binstalk = { path = "../binstalk", version = "0.7.1", default-features = false }
|
||||||
binstalk-manifests = { path = "../binstalk-manifests", version = "0.2.0" }
|
binstalk-manifests = { path = "../binstalk-manifests", version = "0.2.0" }
|
||||||
clap = { version = "4.1.4", features = ["derive"] }
|
clap = { version = "4.1.4", features = ["derive"] }
|
||||||
crates_io_api = { version = "0.8.1", default-features = false }
|
crates_io_api = { version = "0.8.1", default-features = false }
|
||||||
|
|
|
@ -11,7 +11,7 @@ license = "GPL-3.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-trait = "0.1.64"
|
async-trait = "0.1.64"
|
||||||
binstalk-downloader = { version = "0.3.2", path = "../binstalk-downloader" }
|
binstalk-downloader = { version = "0.3.2", path = "../binstalk-downloader", default-features = false }
|
||||||
binstalk-types = { version = "0.2.0", path = "../binstalk-types" }
|
binstalk-types = { version = "0.2.0", path = "../binstalk-types" }
|
||||||
cargo_toml = "0.15.1"
|
cargo_toml = "0.15.1"
|
||||||
command-group = { version = "2.0.1", features = ["with-tokio"] }
|
command-group = { version = "2.0.1", features = ["with-tokio"] }
|
||||||
|
|
Loading…
Add table
Reference in a new issue