Compare commits

...

1 Commits

Author SHA1 Message Date
6473af88c2 Update Rust crate zip to 2.5.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-04-02 00:33:40 +00:00
2 changed files with 3 additions and 5 deletions

6
Cargo.lock generated
View File

@ -2254,9 +2254,9 @@ dependencies = [
[[package]]
name = "zip"
version = "2.4.1"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "938cc23ac49778ac8340e366ddc422b2227ea176edb447e23fc0627608dddadd"
checksum = "27c03817464f64e23f6f37574b4fdc8cf65925b5bfd2b0f2aedf959791941f88"
dependencies = [
"aes",
"arbitrary",
@ -2265,7 +2265,6 @@ dependencies = [
"crc32fast",
"crossbeam-utils",
"deflate64",
"displaydoc",
"flate2",
"getrandom 0.3.1",
"hmac",
@ -2274,7 +2273,6 @@ dependencies = [
"memchr",
"pbkdf2",
"sha1",
"thiserror",
"time",
"xz2",
"zeroize",

View File

@ -17,7 +17,7 @@ serde_json = "1.0.140"
reqwest = { version = "0.12.15", features = ["json"] }
serde = { version = "1.0.219", features = ["derive"] }
log = "0.4.27"
zip = { version = "2.1.3", optional = true }
zip = { version = "2.5.0", optional = true }
mktemp = { version = "0.5.1", optional = true }
rand = { version = "0.9.0", optional = true }
port_scanner = { version = "0.1.5", optional = true }