diff --git a/CHANGELOG.md b/CHANGELOG.md index 528a71c..d701a80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,8 +18,8 @@ - `mdns-sd`: 0.15.1 → 0.17.2 ([#150](https://github.com/CramBL/fidelityfetch/pull/150)) - `chrono`: 0.4.42 → 0.4.43 ([#150](https://github.com/CramBL/fidelityfetch/pull/150)) - `thiserror`: 2.0.17 → 2.0.18 ([#150](https://github.com/CramBL/fidelityfetch/pull/150)) -- `zip`: 5.1.1 → 7.1.0 ([#150](https://github.com/CramBL/fidelityfetch/pull/150)) - `axum-test`: 18.1.0 → 18.7.0 ([#150](https://github.com/CramBL/fidelityfetch/pull/150)) +- `zip`: 5.1.1 → 7.2.0 ([#151](https://github.com/CramBL/fidelityfetch/pull/151)) ## [1.3.0] diff --git a/Cargo.lock b/Cargo.lock index f3624a8..34146a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1862,6 +1862,12 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" +[[package]] +name = "typed-path" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e43ffa54726cdc9ea78392023ffe9fe9cf9ac779e1c6fcb0d23f9862e3879d20" + [[package]] name = "typeid" version = "1.0.3" @@ -2425,14 +2431,15 @@ 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 = [ "crc32fast", "flate2", "indexmap", "memchr", + "typed-path", "zopfli", ] diff --git a/Cargo.toml b/Cargo.toml index 89bab8c..36a4241 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -58,7 +58,7 @@ futures-util = { version = "0.3", default-features = false } percent-encoding = "2.3" thiserror = "2.0" strum = { version = "0.27", features = ["derive"], default-features = false } -zip = { version = "7.1.0", features = ["deflate"], default-features = false } +zip = { version = "7.2.0", features = ["deflate"], default-features = false } walkdir = "2.5.0" [dev-dependencies]