diff --git a/Cargo.lock b/Cargo.lock index c81eef00..4c8d4281 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -960,15 +960,6 @@ dependencies = [ "serde", ] -[[package]] -name = "bzip2" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" -dependencies = [ - "bzip2-sys", -] - [[package]] name = "bzip2" version = "0.6.1" @@ -978,16 +969,6 @@ dependencies = [ "libbz2-rs-sys", ] -[[package]] -name = "bzip2-sys" -version = "0.1.13+1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" -dependencies = [ - "cc", - "pkg-config", -] - [[package]] name = "cairo-rs" version = "0.18.5" @@ -2114,7 +2095,7 @@ version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c169adf067a787e1f1c58ed62906a557de85388bee4b54fb878b722ff606b113" dependencies = [ - "bzip2 0.6.1", + "bzip2", "clap", "fs-err", "indicatif", @@ -2914,11 +2895,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4" dependencies = [ "cfg-if", - "js-sys", "libc", "r-efi", "wasi 0.14.2+wasi-0.2.4", - "wasm-bindgen", ] [[package]] @@ -4194,6 +4173,15 @@ dependencies = [ "value-bag", ] +[[package]] +name = "lzma-rust2" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e20f57f9918e5bd7bc58c22cdd70a6afc7375d4dd9683af5f2b34bd3d2bba619" +dependencies = [ + "sha2", +] + [[package]] name = "mac" version = "0.1.1" @@ -6174,6 +6162,12 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" +[[package]] +name = "ppmd-rust" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e9219bcb9d7aca6b2f63c83cf100cf78bcd619ac46e6ecbd0dd90869a39345d" + [[package]] name = "ppv-lite86" version = "0.2.21" @@ -8906,7 +8900,7 @@ dependencies = [ "tokio", "url", "windows-sys 0.60.2", - "zip", + "zip 4.6.1", ] [[package]] @@ -11376,7 +11370,7 @@ dependencies = [ "yaak-models", "yaak-plugins", "yaak-templates", - "zip", + "zip 7.0.0", ] [[package]] @@ -12046,13 +12040,13 @@ dependencies = [ [[package]] name = "zip" -version = "4.0.0" +version = "4.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "153a6fff49d264c4babdcfa6b4d534747f520e56e8f0f384f3b808c4b64cc1fd" +checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1" dependencies = [ "aes", "arbitrary", - "bzip2 0.5.2", + "bzip2", "constant_time_eq 0.3.1", "crc32fast", "deflate64", @@ -12063,6 +12057,35 @@ dependencies = [ "liblzma", "memchr", "pbkdf2", + "ppmd-rust", + "sha1", + "time", + "zeroize", + "zopfli", + "zstd", +] + +[[package]] +name = "zip" +version = "7.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdd8a47718a4ee5fe78e07667cd36f3de80e7c2bfe727c7074245ffc7303c037" +dependencies = [ + "aes", + "arbitrary", + "bzip2", + "constant_time_eq 0.3.1", + "crc32fast", + "deflate64", + "flate2", + "generic-array", + "getrandom 0.3.3", + "hmac", + "indexmap 2.14.0", + "lzma-rust2", + "memchr", + "pbkdf2", + "ppmd-rust", "sha1", "time", "zeroize", @@ -12078,7 +12101,7 @@ checksum = "aed5f10c571472911e37d8f7601a8dfba52b4f7f73a344015291b82ab292faf6" dependencies = [ "log 0.4.29", "thiserror 2.0.17", - "zip", + "zip 4.6.1", ] [[package]] diff --git a/crates-cli/yaak-cli/Cargo.toml b/crates-cli/yaak-cli/Cargo.toml index 8618dd7d..244a137e 100644 --- a/crates-cli/yaak-cli/Cargo.toml +++ b/crates-cli/yaak-cli/Cargo.toml @@ -39,7 +39,7 @@ tokio = { workspace = true, features = [ ] } walkdir = "2" webbrowser = "1" -zip = "4" +zip = "7" yaak = { workspace = true } yaak-api = { workspace = true } yaak-core = { workspace = true }