1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: accept newer major versions of crate zip
Author: Jonas Smedegaard <dr@jones.dk>
Bug-Debian: https://bugs.debian.org/1115460
Last-Update: 2025-09-17
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -106,7 +106,7 @@
walkdir = "2"
# by default which pulls in an outdated failure version
which = { version = "6", default-features = false }
-zip = { version = "2", default-features = false }
+zip = { version = ">= 2, <= 5", default-features = false }
zstd = "0.13"
# dist-server only
|