From 8c7a486aebed7f763bd672fbbfae87ad2bf66a26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:22:55 +0000 Subject: [PATCH] Bump zip from 2.2.0 to 2.2.1 Bumps [zip](https://github.com/zip-rs/zip2) from 2.2.0 to 2.2.1. - [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.2.0...v2.2.1) --- updated-dependencies: - dependency-name: zip dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 +++++------------------------- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 19094b8..57a8bdb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -875,33 +875,13 @@ dependencies = [ "unicode-ident", ] -[[package]] -name = "thiserror" -version = "1.0.68" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02dd99dc800bbb97186339685293e1cc5d9df1f8fae2d0aecd9ff1c77efea892" -dependencies = [ - "thiserror-impl 1.0.68", -] - [[package]] name = "thiserror" version = "2.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa" dependencies = [ - "thiserror-impl 2.0.3", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.68" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7c61ec9a6f64d2793d8a45faba21efbe3ced62a886d44c36a009b2b519b4c7e" -dependencies = [ - "proc-macro2", - "quote", - "syn", + "thiserror-impl", ] [[package]] @@ -1195,9 +1175,9 @@ dependencies = [ [[package]] name = "zip" -version = "2.2.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc5e4288ea4057ae23afc69a4472434a87a2495cafce6632fd1c4ec9f5cf3494" +checksum = "99d52293fc86ea7cf13971b3bb81eb21683636e7ae24c729cdaf1b7c4157a352" dependencies = [ "aes", "arbitrary", @@ -1215,7 +1195,7 @@ dependencies = [ "pbkdf2", "rand", "sha1", - "thiserror 1.0.68", + "thiserror", "time", "zeroize", "zopfli", @@ -1235,7 +1215,7 @@ dependencies = [ "num_cpus", "pbkdf2", "sha1", - "thiserror 2.0.3", + "thiserror", "zip", ] diff --git a/Cargo.toml b/Cargo.toml index edaeca8..a186bdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["zip", "archive", "password", "crack", "brute-force"] edition = "2021" [dependencies] -zip = "2.2.0" +zip = "2.2.1" pbkdf2 = "0.12.2" # parallel version did not help the performance hmac = { version = "0.12.1", features = ["reset"] } sha1 = "0.10.6"