From d7e08b84c491a8b9e5e9b510163f6b296c1c9298 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 14:03:53 +0000 Subject: [PATCH] Update zip requirement from 5.0 to 6.0 in /ext/parsekit Updates the requirements on [zip](https://github.com/zip-rs/zip2) to permit the latest version. - [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/compare/v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: zip dependency-version: 6.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ext/parsekit/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/parsekit/Cargo.toml b/ext/parsekit/Cargo.toml index 59b8ddd..c62bee0 100644 --- a/ext/parsekit/Cargo.toml +++ b/ext/parsekit/Cargo.toml @@ -21,7 +21,7 @@ image = "0.25" # Image processing library (match rusty-tesseract's version) calamine = "0.31" # Excel parsing docx-rs = "0.4" # Word document parsing quick-xml = "0.38" # XML parsing -zip = "5.0" # ZIP archive handling for PPTX +zip = "6.0" # ZIP archive handling for PPTX serde_json = "1.0" # JSON parsing regex = "1.10" # Text parsing encoding_rs = "0.8" # Encoding detection