From d116a630bdcb5cf105969e986e984c7316e65e73 Mon Sep 17 00:00:00 2001 From: Matthew Esposito Date: Sun, 2 Feb 2025 22:26:00 -0500 Subject: [PATCH] fix(cargo): gate dep feature behind feature --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0a45db7..ae7dbff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ authors = [ edition = "2021" [features] -no-https-verification = [] +no-https-verification = ["rustls/dangerous_configuration"] [dependencies] rinja = { version = "0.3.4", default-features = false } @@ -46,7 +46,7 @@ pretty_env_logger = "0.5.0" dotenvy = "0.15.7" rss = "2.0.7" arc-swap = "1.7.1" -rustls = { version = "0.21.12", features = ["dangerous_configuration"] } +rustls = { version = "0.21.12" } ctor = "0.2.8" serde_json_path = "0.6.7" async-recursion = "1.1.1"