From 7e46d9ff8a40c5625ae6b114a52917f77d71ad2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 12:01:14 +0000 Subject: [PATCH] Bump zip from 5.1.1 to 6.0.0 Bumps [zip](https://github.com/zip-rs/zip2) from 5.1.1 to 6.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/v5.1.1...v6.0.0) --- updated-dependencies: - dependency-name: zip dependency-version: 6.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 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" }