Skip to content

Commit 4d1c5ed

Browse files
committed
Auto merge of #8023 - aleksator:8019_remove_adler32_dependency, r=alexcrichton
Remove unused transitive dependencies: miniz_oxide, adler32 Fixes #8019
2 parents 71fbc99 + 38aa4a2 commit 4d1c5ed

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ env_logger = "0.7.0"
3131
pretty_env_logger = { version = "0.4", optional = true }
3232
anyhow = "1.0"
3333
filetime = "0.2"
34-
flate2 = { version = "1.0.3", features = ["zlib"] }
34+
flate2 = { version = "1.0.3", default-features = false, features = ["zlib"] }
3535
fs2 = "0.4"
3636
git2 = "0.13.0"
3737
git2-curl = "0.14.0"

crates/cargo-test-support/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ doctest = false
1111
cargo = { path = "../.." }
1212
cargo-test-macro = { path = "../cargo-test-macro" }
1313
filetime = "0.2"
14-
flate2 = "1.0"
14+
flate2 = { version = "1.0", default-features = false, features = ["zlib"] }
1515
git2 = "0.13"
1616
glob = "0.3"
1717
lazy_static = "1.0"

0 commit comments

Comments
 (0)