From b427a324af2be8c038bd55c7bd9b7b24b38a8d6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Aug 2025 20:19:07 +0000 Subject: [PATCH] Update zip requirement from 2.1 to 4.5 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.5.0) --- updated-dependencies: - dependency-name: zip dependency-version: 4.5.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..7af1178 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.5", default-features = false, features = ["deflate"] } anyhow = "1.0" log = "0.4.17" tracing = "0.1.41"