From 0c01bab17adcfe4c1eb951521d2e6c434a031c81 Mon Sep 17 00:00:00 2001 From: Kavin <20838718+FireMasterK@users.noreply.github.com> Date: Sat, 12 Aug 2023 12:08:00 +0100 Subject: [PATCH] Don't include any features in reqwest by default. --- piped/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piped/Cargo.toml b/piped/Cargo.toml index 46ca454..75d8d7a 100644 --- a/piped/Cargo.toml +++ b/piped/Cargo.toml @@ -11,7 +11,7 @@ version = "0.0.4" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -reqwest = "^0.11" +reqwest = { version = "^0.11", default-features = false } serde = {version = "^1.0", features = ["derive"]} serde_json = "^1.0" url = "^2.2"