From d03cc92a539ddb43afcb31a391d90a25a3cc1af2 Mon Sep 17 00:00:00 2001 From: Tristan Michael Date: Fri, 3 Apr 2026 10:03:12 -0700 Subject: [PATCH] Use reqwest with rustls-tls and disable default features Enable rustls TLS support and disable reqwest's default features to avoid pulling in unwanted native TLS dependencies. This ensures the application uses rustls for TLS connections and keeps the build more portable and consistent across platforms. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 47e21de..ff4f4c3 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" } +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] } sha2 = "0.10" quick-xml = "0.36"