diff --git a/Cargo.lock b/Cargo.lock index 41b592a..3fe508c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1526,9 +1526,9 @@ checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" [[package]] name = "zip" -version = "5.1.1" +version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f852905151ac8d4d06fdca66520a661c09730a74c6d4e2b0f27b436b382e532" +checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b" dependencies = [ "arbitrary", "crc32fast", diff --git a/pack-common/Cargo.toml b/pack-common/Cargo.toml index c072f08..9ec3b52 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 = "5.1.1", default-features = false, features = ["deflate"] } +zip = { version = "6.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 1b8de2f..9a56678 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 = "5.1.1", default-features = false, features = ["deflate"] } +zip = { version = "6.0.0", default-features = false, features = ["deflate"] } pack-common = { path = "../pack-common" }