From c4c15f9b11995c051a77b792795147c36d5bdf77 Mon Sep 17 00:00:00 2001 From: ByteDream Date: Tue, 11 Apr 2023 22:54:24 +0200 Subject: [PATCH] Disable default features for reqwest --- crunchy-cli-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crunchy-cli-core/Cargo.toml b/crunchy-cli-core/Cargo.toml index 407383b..708303f 100644 --- a/crunchy-cli-core/Cargo.toml +++ b/crunchy-cli-core/Cargo.toml @@ -19,7 +19,7 @@ lazy_static = "1.4" log = { version = "0.4", features = ["std"] } num_cpus = "1.15" regex = "1.7" -reqwest = { version = "0.11", features = ["socks"] } +reqwest = { version = "0.11", default-features = false, features = ["socks"] } sanitize-filename = "0.4" serde = "1.0" serde_json = "1.0"