diff --git a/Cargo.lock b/Cargo.lock index f98125b..62adc8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1676,9 +1676,9 @@ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] name = "zip" -version = "6.0.0" +version = "7.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b" +checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037" dependencies = [ "arbitrary", "crc32fast", diff --git a/pack-common/Cargo.toml b/pack-common/Cargo.toml index 9ec3b52..469a705 100644 --- a/pack-common/Cargo.toml +++ b/pack-common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] deku = "0.19.1" xml = "0.8.20" -zip = { version = "6.0.0", default-features = false, features = ["deflate"] } +zip = { version = "7.0.0", default-features = false, features = ["deflate"] } pem = "3.0.5" rsa = "0.9.9" rasn = "0.27.2" diff --git a/pack-zip/Cargo.toml b/pack-zip/Cargo.toml index 9a56678..0f1385f 100644 --- a/pack-zip/Cargo.toml +++ b/pack-zip/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -zip = { version = "6.0.0", default-features = false, features = ["deflate"] } +zip = { version = "7.0.0", default-features = false, features = ["deflate"] } pack-common = { path = "../pack-common" }