1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: accept older major versions of crate brotli
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Bug-Debian: https://bugs.debian.org/1090325
Last-Update: 2025-08-29
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -43,7 +43,7 @@
async-trait = "0.1.74"
base64 = "0.22"
bencher = "0.1.5"
-brotli = { version = "8", default-features = false, features = ["std"] }
+brotli = { version = ">= 6.0.0, <= 8", default-features = false, features = ["std"] }
brotli-decompressor = "5.0.0"
byteorder = "1.4.3"
chacha20poly1305 = { version = "0.10", default-features = false, features = ["alloc"] }
|