From 31b328f7544d0a3a02faa42a8cb254bdc44f3ce1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Feb 2026 06:11:57 +0000 Subject: [PATCH] chore(deps): bump zip from 0.6.6 to 8.1.0 Bumps [zip](https://github.com/zip-rs/zip2) from 0.6.6 to 8.1.0. - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/commits/v8.1.0) --- updated-dependencies: - dependency-name: zip dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 ++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d0ff82067..dd1b96cad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7315,6 +7315,12 @@ dependencies = [ "syn 2.0.117", ] +[[package]] +name = "typed-path" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e" + [[package]] name = "typenum" version = "1.19.0" @@ -9298,14 +9304,16 @@ dependencies = [ [[package]] name = "zip" -version = "0.6.6" +version = "8.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261" +checksum = "6e499faf5c6b97a0d086f4a8733de6d47aee2252b8127962439d8d4311a73f72" dependencies = [ - "byteorder", "crc32fast", - "crossbeam-utils", "flate2", + "indexmap", + "memchr", + "typed-path", + "zopfli", ] [[package]] @@ -9320,6 +9328,18 @@ version = "1.0.21" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" +[[package]] +name = "zopfli" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249" +dependencies = [ + "bumpalo", + "crc32fast", + "log", + "simd-adler32", +] + [[package]] name = "zune-core" version = "0.5.1" diff --git a/Cargo.toml b/Cargo.toml index 7b9db4af8..9cf53b3fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ urlencoding = "2.1" nanohtml2text = "0.2" # Zip archive extraction -zip = { version = "0.6", default-features = false, features = ["deflate"] } +zip = { version = "8.1", default-features = false, features = ["deflate"] } # XML parsing (DOCX text extraction) quick-xml = "0.37"