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:
figsoda 2023-02-09 22:01:51 -05:00 committed by GitHub
parent d9dd611b9e
commit ff753f06f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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 }

View file

@ -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"] }