From 5ae83b59265aea7bfa6b236d0bce39e289ed7690 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Jan 2026 17:17:00 +0000 Subject: [PATCH] update: bump zip from 6.0.0 to 7.1.0 Bumps [zip](https://github.com/zip-rs/zip2) from 6.0.0 to 7.1.0. - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v6.0.0...v7.1.0) --- updated-dependencies: - dependency-name: zip dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 35 +---------------------------------- sdk/Cargo.toml | 6 +++--- 2 files changed, 4 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1843a3217..f117bd30c 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" @@ -525,8 +516,7 @@ dependencies = [ "wstd", "x509-parser", "zeroize", - "zip 6.0.0", - "zip 7.2.0", + "zip", ] [[package]] @@ -1088,17 +1078,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" @@ -5268,18 +5247,6 @@ dependencies = [ "syn 2.0.114", ] -[[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.2.0" diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 485299103..a4ea74e5b 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -210,13 +210,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] @@ -284,7 +284,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"