From 6901188356590f70f46c974af044e672795c8f4d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 21:22:05 +0000 Subject: [PATCH] Update zip requirement from 2.1 to 4.4 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/v2.1.0...v4.4.0) --- updated-dependencies: - dependency-name: zip dependency-version: 4.4.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- loader/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/Cargo.toml b/loader/Cargo.toml index 425f256..2fe845c 100644 --- a/loader/Cargo.toml +++ b/loader/Cargo.toml @@ -8,7 +8,7 @@ model = { path = "../model" } parser = { path = "../parser" } glob = "0.3.1" -zip = { version = "2.1", default-features = false, features = ["deflate"] } +zip = { version = "4.4", default-features = false, features = ["deflate"] } anyhow = "1.0" log = "0.4.17" tracing = "0.1.41"