Compare commits

...

1 Commits

Author SHA1 Message Date
8ca9b25147 Update Rust crate zip to 2.6.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-04-04 00:33:46 +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.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "938cc23ac49778ac8340e366ddc422b2227ea176edb447e23fc0627608dddadd"
checksum = "febbe83a485467affa75a75d28dc7494acd2f819e549536c47d46b3089b56164"
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.6.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 }