Skip to content

Commit

Permalink
Auto merge of #8023 - aleksator:8019_remove_adler32_dependency, r=ale…
Browse files Browse the repository at this point in the history
…xcrichton

Remove unused transitive dependencies: miniz_oxide, adler32

Fixes #8019
  • Loading branch information
bors committed Mar 23, 2020
2 parents 71fbc99 + 38aa4a2 commit 4d1c5ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ env_logger = "0.7.0"
pretty_env_logger = { version = "0.4", optional = true }
anyhow = "1.0"
filetime = "0.2"
flate2 = { version = "1.0.3", features = ["zlib"] }
flate2 = { version = "1.0.3", default-features = false, features = ["zlib"] }
fs2 = "0.4"
git2 = "0.13.0"
git2-curl = "0.14.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/cargo-test-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ doctest = false
cargo = { path = "../.." }
cargo-test-macro = { path = "../cargo-test-macro" }
filetime = "0.2"
flate2 = "1.0"
flate2 = { version = "1.0", default-features = false, features = ["zlib"] }
git2 = "0.13"
glob = "0.3"
lazy_static = "1.0"
Expand Down

0 comments on commit 4d1c5ed

Please sign in to comment.