From ba356d857a13d4f2bafa690982eda912f15910cb Mon Sep 17 00:00:00 2001 From: LP Date: Sun, 18 Jan 2026 08:02:08 +0100 Subject: [PATCH] fix(deps): update reqwest feature name for v0.13 compatibility reqwest 0.13 renamed the 'rustls-tls' feature to just 'rustls'. This updates the feature name to match the new API. Co-Authored-By: Claude Opus 4.5 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bcd4a33..121a03c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,8 @@ chrono = { version = "0.4", features = ["serde"] } wasm-bindgen = { version = "0.2", optional = true } # HTTP client -reqwest = { version = "0.13", features = ["json", "rustls-tls"] } +# Note: reqwest 0.13 renamed rustls-tls to just rustls +reqwest = { version = "0.13", features = ["json", "rustls"] } # Error handling thiserror = "2"