File: 2002_reqwest.patch

package info (click to toggle)
rust-mockito 1.7.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 608 kB
  • sloc: makefile: 2; sh: 1
file content (17 lines) | stat: -rw-r--r-- 675 bytes parent folder | download
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]