From a560857c09edf6517239fd71ecdd334eabfa8944 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 20 Mar 2025 05:59:52 +0100
Subject: [PATCH] build(deps): bump zip from 2.2.1 to 2.3.0 (#1432)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Bumps [zip](https://github.com/zip-rs/zip2) from 2.2.1 to 2.3.0.
Release notes
Sourced from zip's
releases.
v2.3.0
🚀 Features
- Add support for NTFS extra field (#279)
🐛 Bug Fixes
- (test) Conditionalize a zip64 doctest (#308)
- fix failing tests, remove symlink loop check
- Canonicalize output path to avoid false negatives
- Symlink handling in stream extraction
- Canonicalize output paths and symlink targets, and ensure they
descend from the destination
⚙️ Miscellaneous Tasks
- Fix clippy and cargo fmt warnings (#310)
v2.2.3
🚜 Refactor
- Change the inner structure of
DateTime (#267)
⚙️ Miscellaneous Tasks
v2.2.2
🐛 Bug Fixes
- rewrite the EOCD/EOCD64 detection to fix extreme performance
regression (#247)
Changelog
Sourced from zip's
changelog.
2.3.0
- 2025-03-16
🚀 Features
- Add support for NTFS extra field (#279)
🐛 Bug Fixes
- (test) Conditionalize a zip64 doctest (#308)
- fix failing tests, remove symlink loop check
- Canonicalize output path to avoid false negatives
- Symlink handling in stream extraction
- Canonicalize output paths and symlink targets, and ensure they
descend from the destination
⚙️ Miscellaneous Tasks
- Fix clippy and cargo fmt warnings (#310)
2.2.3
- 2025-02-26
🚜 Refactor
- Change the inner structure of
DateTime (#267)
⚙️ Miscellaneous Tasks
2.2.2
- 2024-12-16
🐛 Bug Fixes
- rewrite the EOCD/EOCD64 detection to fix extreme performance
regression (#247)
Commits
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/rustic-rs/rustic/network/alerts).
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
Cargo.lock | 4 ++--
Cargo.toml | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.lock b/Cargo.lock
index 070db41..7b17508 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5960,9 +5960,9 @@ dependencies = [
[[package]]
name = "zip"
-version = "2.2.1"
+version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "99d52293fc86ea7cf13971b3bb81eb21683636e7ae24c729cdaf1b7c4157a352"
+checksum = "84e9a772a54b54236b9b744aaaf8d7be01b4d6e99725523cb82cb32d1c81b1d7"
dependencies = [
"arbitrary",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index 45394a5..4d4e8b7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -125,7 +125,7 @@ reqwest = { version = "0.12.9", default-features = false, features = ["rustls-tl
self_update = { version = "=0.39.0", default-features = false, optional = true, features = ["rustls", "archive-tar", "compression-flate2"] } # FIXME: Downgraded to 0.39.0 due to https://github.com/jaemk/self_update/issues/136
tar = "0.4.43"
toml = "0.8"
-zip = { version = "2.2.0", default-features = false, features = ["deflate", "chrono"] }
+zip = { version = "2.3.0", default-features = false, features = ["deflate", "chrono"] }
# filtering
jaq-core = { version = "2", optional = true }