From b0ee507743b9092429ac981e5d6650104d038c6c Mon Sep 17 00:00:00 2001 From: kalvinparker <106995826+kalvinparker@users.noreply.github.com> Date: Mon, 10 Nov 2025 21:18:18 +0000 Subject: [PATCH] chore(experiment): try reqwest with native-tls to avoid webpki-roots --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a95bf611..b6bb9164 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -143,7 +143,8 @@ email_address = "0.2.9" handlebars = { version = "6.3.2", features = ["dir_source"] } # HTTP client (Used for favicons, version check, DUO and HIBP API) -reqwest = { version = "0.12.24", features = ["rustls-tls", "rustls-tls-native-roots", "stream", "json", "deflate", "gzip", "brotli", "zstd", "socks", "cookies", "charset", "http2", "system-proxy"], default-features = false} +# Swap rustls -> native-tls for experiment to avoid pulling webpki-roots (CDLA-Permissive-2.0) +reqwest = { version = "0.12.24", features = ["native-tls", "stream", "json", "deflate", "gzip", "brotli", "zstd", "socks", "cookies", "charset", "http2", "system-proxy"], default-features = false } hickory-resolver = "0.25.2" # Favicon extraction libraries