From 715a98211e1786dcf1c82726df5017bf14f0a7bf Mon Sep 17 00:00:00 2001 From: Roman Kvasnytskyi Date: Tue, 24 Sep 2024 15:48:21 +0200 Subject: [PATCH] feature: Remove native-tls feature of reqwest --- Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ef81fc1..7bced7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,9 +8,8 @@ edition = "2021" clap = { version = "4.5.18", features = ["derive"] } futures = "0.3.30" regex = "1.10.6" -reqwest = { version = "0.12.7", features = ["rustls-tls"] } +reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls", "socks", "gzip", "brotli", "deflate"] } tokio = { version = "1.40.0", features = ["full"] } -hex = "0.4.3" once_cell = "1.19.0" twoway = "0.2" colored = "2.1.0"