From 68517427be9f60d397c90367ac72e182d2d63e8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Jan 2026 19:30:16 +0000 Subject: [PATCH] Bump zip from 6.0.0 to 7.0.0 Bumps [zip](https://github.com/zip-rs/zip2) from 6.0.0 to 7.0.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.0.0) --- updated-dependencies: - dependency-name: zip dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- pack-common/Cargo.toml | 2 +- pack-zip/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) 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" }