Update Rust crate zip to 7.2.0
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-01-21 00:13:53 +00:00
parent 3f4f586395
commit 6924297979
2 changed files with 11 additions and 3 deletions

12
Cargo.lock generated
View File

@@ -1668,6 +1668,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
dependencies = [
"deranged",
"js-sys",
"num-conv",
"powerfmt",
"serde",
@@ -1826,6 +1827,12 @@ version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "typed-path"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7922f2cdc51280d47b491af9eafc41eb0cdab85eabcb390c854412fcbf26dbe8"
[[package]]
name = "typenum"
version = "1.19.0"
@@ -2401,9 +2408,9 @@ dependencies = [
[[package]]
name = "zip"
version = "7.1.0"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9013f1222db8a6d680f13a7ccdc60a781199cd09c2fa4eff58e728bb181757fc"
checksum = "c42e33efc22a0650c311c2ef19115ce232583abbe80850bc8b66509ebef02de0"
dependencies = [
"aes",
"bzip2",
@@ -2421,6 +2428,7 @@ dependencies = [
"ppmd-rust",
"sha1",
"time",
"typed-path",
"zeroize",
"zopfli",
"zstd",

View File

@@ -17,7 +17,7 @@ serde_json = "1.0.149"
reqwest = { version = "0.13.1", features = ["json", "form"] }
serde = { version = "1.0.228", features = ["derive"] }
log = "0.4.29"
zip = { version = "7.1.0", optional = true }
zip = { version = "7.2.0", optional = true }
mktemp = { version = "0.5.1", optional = true }
rand = { version = "0.9.2", optional = true }
port_scanner = { version = "0.1.5", optional = true }