diff --git a/Cargo.lock b/Cargo.lock index 40756c1..0564efe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -350,7 +350,7 @@ dependencies = [ "log", "quick-xml", "serde", - "zip", + "zip 7.2.0", ] [[package]] @@ -2444,7 +2444,7 @@ version = "0.95.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f281b687352597d29efaad39701d1167d5c48aa76fb973e392bc13e9d44e7f36" dependencies = [ - "zip", + "zip 7.2.0", ] [[package]] @@ -3391,7 +3391,7 @@ dependencies = [ "tempfile", "thiserror", "toml", - "zip", + "zip 8.6.0", ] [[package]] @@ -3452,7 +3452,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" dependencies = [ "fastrand", - "getrandom 0.3.4", + "getrandom 0.4.3", "once_cell", "rustix", "windows-sys 0.61.2", @@ -4785,6 +4785,20 @@ dependencies = [ "zopfli", ] +[[package]] +name = "zip" +version = "8.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b" +dependencies = [ + "crc32fast", + "flate2", + "indexmap", + "memchr", + "typed-path", + "zopfli", +] + [[package]] name = "zlib-rs" version = "0.6.3" diff --git a/Cargo.toml b/Cargo.toml index fd5a50e..3727c6d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -106,7 +106,7 @@ sha2 = "0.11" hmac = "0.13" semver = "1" self-replace = "1" -zip = { version = "7.2.0", default-features = false, features = ["deflate"] } +zip = { version = "8.6.0", default-features = false, features = ["deflate"] } flate2 = "1" tar = "0.4" tempfile = "3"