1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: accept newer minor version of crate reqwest
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2025-08-28
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -30,7 +30,7 @@
clap_complete = { version = "4.4.5", optional = true }
# API calls
-reqwest = { version = "0.11.23", features = ["json", "rustls-tls"], default-features = false }
+reqwest = { version = ">= 0.11.23, <= 0.12", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
futures = "0.3.30"
thiserror = "1.0.53"
|