diff --git a/Cargo.lock b/Cargo.lock index b5cadcf50..a4f937dd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -127,15 +127,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "arbitrary" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1" -dependencies = [ - "derive_arbitrary", -] - [[package]] name = "asn1-rs" version = "0.7.1" @@ -524,8 +515,7 @@ dependencies = [ "wstd", "x509-parser", "zeroize", - "zip 6.0.0", - "zip 7.4.0", + "zip", ] [[package]] @@ -1098,17 +1088,6 @@ dependencies = [ "serde_core", ] -[[package]] -name = "derive_arbitrary" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.114", -] - [[package]] name = "difflib" version = "0.4.0" @@ -5262,21 +5241,9 @@ dependencies = [ [[package]] name = "zip" -version = "6.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b" -dependencies = [ - "arbitrary", - "crc32fast", - "indexmap 2.13.0", - "memchr", -] - -[[package]] -name = "zip" -version = "7.4.0" +version = "7.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc12baa6db2b15a140161ce53d72209dacea594230798c24774139b54ecaa980" +checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0" dependencies = [ "crc32fast", "indexmap 2.13.0", diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index a0478be15..fe44cf99e 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -203,13 +203,13 @@ openssl = { version = "0.10.72", features = ["vendored"], optional = true } ureq = { version = "3.1.0", default-features = false, features = [ "rustls" ], optional = true } -zip = { version = "7.0.0", default-features = false } +zip = { version = "7.2.0", default-features = false } [target.'cfg(target_os = "wasi")'.dependencies] wasi = { version = "0.14.3", optional = true } wstd = { version = "0.5.4", optional = true } # Use zip 6 for WASI to avoid typed-path wasip2 issue. Fix: http://github.com/chipsenkbeil/typed-path/pull/57 -zip = { version = "6.0.0", default-features = false } +zip = { version = "7.2.0", default-features = false } # `wstd` is required for testing, but optional as a normal dependency. [target.'cfg(target_os = "wasi")'.dev-dependencies] @@ -277,7 +277,7 @@ web-sys = { version = "0.3.58", features = [ "Window", "WorkerGlobalScope", ] } -zip = { version = "7.0.0", default-features = false } +zip = { version = "7.2.0", default-features = false } [dev-dependencies] anyhow = "1.0.97"