From c621a5e4753ad6bce4b02084971d14d6d6b4e02a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 May 2024 17:22:16 +0200 Subject: [PATCH] Update zip requirement from 0.6 to 1.2 (#2169) 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/v0.6.4...v1.2.3) --- updated-dependencies: - dependency-name: zip dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- libafl/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index 644c2a8557..8edd97190d 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -138,7 +138,7 @@ nautilus = ["grammartec", "std", "serde_json/std"] [build-dependencies] reqwest = { version = "0.11", features = ["blocking"], optional = true } rustversion = "1.0" -zip = { version = "0.6", optional = true } +zip = { version = "1.2", optional = true } [dev-dependencies] serde_json = { version = "1.0", default-features = false, features = ["alloc"] }