1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: accept older minor version of crate reqwest
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2026-03-07
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -40,7 +40,7 @@
env_logger = ">= 0.8, <= 0.11"
testing_logger = "0.1"
futures = { version = "0.3", default-features = false, features = ["alloc", "async-await"] }
-reqwest = { version = "0.13", default-features = false, features = ["http2"] }
+reqwest = { version = ">= 0.12.28, <= 0.13", default-features = false, features = ["http2"] }
tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] }
[features]
|