diff --git a/Cargo.lock b/Cargo.lock index 9e907d7a..6c83395b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1584,21 +1584,6 @@ dependencies = [ "libc", ] -[[package]] -name = "crc" -version = "3.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d" -dependencies = [ - "crc-catalog", -] - -[[package]] -name = "crc-catalog" -version = "2.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" - [[package]] name = "crc32fast" version = "1.5.0" @@ -4051,16 +4036,6 @@ dependencies = [ "twox-hash", ] -[[package]] -name = "lzma-rust2" -version = "0.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c60a23ffb90d527e23192f1246b14746e2f7f071cb84476dd879071696c18a4a" -dependencies = [ - "crc", - "sha2", -] - [[package]] name = "mac_address" version = "1.1.8" @@ -7176,9 +7151,9 @@ dependencies = [ [[package]] name = "zip" -version = "6.0.0" +version = "4.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b" +checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1" dependencies = [ "aes", "arbitrary", @@ -7190,7 +7165,7 @@ dependencies = [ "getrandom 0.3.4", "hmac", "indexmap", - "lzma-rust2", + "liblzma", "memchr", "pbkdf2", "ppmd-rust", diff --git a/Cargo.toml b/Cargo.toml index c2ece5b1..71cff781 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -53,7 +53,7 @@ arrow = { version = "57.1.0", optional = true } hyper-util = { version = "0.1.16", optional = true } pretty_assertions = { version = "1.4", optional = true } reqwest = { version = "0.12", optional = true } -zip = { version = "6.0", optional = true } +zip = { version = "4.0", optional = true } tonic-prost = "0.14.2" [features] @@ -85,5 +85,5 @@ tokio-stream = { version = "0.1.17", features = ["sync"] } hyper-util = "0.1.16" pretty_assertions = "1.4" reqwest = "0.12" -zip = "6.0" +zip = "4.0" test-case = "3.3.1"