Update Rust crate zip to v7 (#147)
All checks were successful
continuous-integration/drone/push Build is passing

This commit was merged in pull request #147.
This commit is contained in:
2025-12-21 00:30:16 +00:00
parent c70a0699ce
commit 8e95ae2861
2 changed files with 6 additions and 5 deletions

9
Cargo.lock generated
View File

@@ -906,9 +906,9 @@ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
[[package]] [[package]]
name = "lzma-rust2" name = "lzma-rust2"
version = "0.13.0" version = "0.15.4"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c60a23ffb90d527e23192f1246b14746e2f7f071cb84476dd879071696c18a4a" checksum = "48172246aa7c3ea28e423295dd1ca2589a24617cc4e588bb8cfe177cb2c54d95"
dependencies = [ dependencies = [
"crc", "crc",
"sha2", "sha2",
@@ -2229,9 +2229,9 @@ dependencies = [
[[package]] [[package]]
name = "zip" name = "zip"
version = "6.0.0" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b" checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037"
dependencies = [ dependencies = [
"aes", "aes",
"arbitrary", "arbitrary",
@@ -2240,6 +2240,7 @@ dependencies = [
"crc32fast", "crc32fast",
"deflate64", "deflate64",
"flate2", "flate2",
"generic-array",
"getrandom 0.3.1", "getrandom 0.3.1",
"hmac", "hmac",
"indexmap", "indexmap",

View File

@@ -17,7 +17,7 @@ serde_json = "1.0.145"
reqwest = { version = "0.12.26", features = ["json"] } reqwest = { version = "0.12.26", features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
log = "0.4.29" log = "0.4.29"
zip = { version = "6.0.0", optional = true } zip = { version = "7.0.0", optional = true }
mktemp = { version = "0.5.1", optional = true } mktemp = { version = "0.5.1", optional = true }
rand = { version = "0.9.2", optional = true } rand = { version = "0.9.2", optional = true }
port_scanner = { version = "0.1.5", optional = true } port_scanner = { version = "0.1.5", optional = true }