Fix responses with more than 100 headers failing on HTTP/1 (#658)

This commit is contained in:
Gregory Schier
2026-09-14 21:04:47 -07:00
committed by GitHub
parent 7c660f4528
commit fd95b4cba3
6 changed files with 151 additions and 80 deletions
+8 -1
View File
@@ -47,7 +47,14 @@ chrono = "0.4.42"
hex = "0.4.3"
keyring = "3.6.3"
log = "0.4.29"
reqwest = "0.12.20"
reqwest = { version = "0.13.5", default-features = false, features = [
# reqwest 0.13 switched `default-tls` from native-tls to rustls; keep the
# rest of the old default set and stay on native-tls.
"charset",
"http2",
"system-proxy",
"native-tls",
] }
rustls = { version = "0.23.34", default-features = false }
rustls-platform-verifier = "0.6.2"
schemars = { version = "0.8.22", features = ["chrono"] }