From ef266f9b0d84d1987463891e4cc83133ea23013f Mon Sep 17 00:00:00 2001 From: Tristan Michael Date: Fri, 3 Apr 2026 09:48:53 -0700 Subject: [PATCH] Relax reqwest features in Cargo.toml Remove the custom default-features and rustls-tls feature flags for reqwest in Cargo.toml. This simplifies the dependency specification and avoids potential TLS configuration or feature mismatch issues that could make HTTP requests behave unexpectedly (e.g., reachability or URL formatting issues). The change restores reqwest to its simpler default feature set to resolve connectivity confusion. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ff4f4c3..47e21de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,6 +14,6 @@ uuid = { version = "1.0", features = ["serde", "v4"] } chrono = { version = "0.4", features = ["serde"] } anyhow = "1.0" tokio = { version = "1.40", features = ["full"] } -reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "0.12" } sha2 = "0.10" quick-xml = "0.36"