From 2f66ba86b07be66fd55b1590903c2bd26717c2f5 Mon Sep 17 00:00:00 2001 From: Pim Feltkamp Date: Fri, 24 Apr 2026 21:35:59 +0200 Subject: [PATCH] Bump reqwest to 0.13 + update features reqwest 0.13 renamed the 'rustls-tls' feature (rustls + webpki-roots bundled) to require opting in to 'rustls' and a certificate source separately, and gated '.query()' behind a 'query' feature. New feature set: rustls + webpki-roots + json + http2 + query. Closes the failing Dependabot PR #4. Co-Authored-By: Claude Opus 4.7 (1M context) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bc51e82..ce1a860 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["cryptohopper", "trading", "crypto", "api", "sdk"] categories = ["api-bindings", "web-programming::http-client"] [dependencies] -reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "http2"] } +reqwest = { version = "0.13", default-features = false, features = ["rustls", "webpki-roots", "json", "http2", "query"] } serde = { version = "1", features = ["derive"] } serde_json = "1" thiserror = "2"