diff --git a/Cargo.lock b/Cargo.lock index 0a2543b05e2..28b3930e9b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2585,9 +2585,9 @@ dependencies = [ [[package]] name = "flate2" -version = "1.1.2" +version = "1.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d" +checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9" dependencies = [ "crc32fast", "libz-rs-sys", @@ -3954,6 +3954,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" dependencies = [ "adler2", + "simd-adler32", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index f1d33b669f2..3b9c21fcb71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -92,7 +92,7 @@ diesel-async = { version = "=0.6.1", features = ["async-connection-wrapper", "de diesel_full_text_search = "=2.2.0" diesel_migrations = { version = "=2.2.0", features = ["postgres"] } dotenvy = "=0.15.7" -flate2 = "=1.1.2" +flate2 = "=1.1.4" futures-util = "=0.3.31" hex = "=0.4.3" http = "=1.3.1" diff --git a/crates/crates_io_database_dump/Cargo.toml b/crates/crates_io_database_dump/Cargo.toml index 17a25f8df5a..47f5d17ded6 100644 --- a/crates/crates_io_database_dump/Cargo.toml +++ b/crates/crates_io_database_dump/Cargo.toml @@ -10,7 +10,7 @@ workspace = true [dependencies] anyhow = "=1.0.100" chrono = { version = "=0.4.42", default-features = false, features = ["clock", "serde"] } -flate2 = "=1.1.2" +flate2 = "=1.1.4" minijinja = "=2.12.0" serde = { version = "=1.0.228", features = ["derive"] } serde_json = "=1.0.145" diff --git a/crates/crates_io_tarball/Cargo.toml b/crates/crates_io_tarball/Cargo.toml index a3fea20faa4..4af7714dd8f 100644 --- a/crates/crates_io_tarball/Cargo.toml +++ b/crates/crates_io_tarball/Cargo.toml @@ -13,7 +13,7 @@ builder = ["dep:flate2", "dep:tar"] [dependencies] astral-tokio-tar = "=0.5.5" cargo-manifest = "=0.19.1" -flate2 = { version = "=1.1.2", optional = true } +flate2 = { version = "=1.1.4", optional = true } serde = { version = "=1.0.228", features = ["derive"] } serde_json = "=1.0.145" tar = { version = "=0.4.44", optional = true } @@ -27,7 +27,7 @@ futures-util = "=0.3.31" anyhow = "=1.0.100" claims = "=0.8.0" clap = { version = "=4.5.48", features = ["derive", "unicode", "wrap_help"] } -flate2 = { version = "=1.1.2" } +flate2 = { version = "=1.1.4" } indicatif = { version = "=0.18.0", features = ["rayon"] } insta = "=1.43.2" rayon = "=1.11.0"