From 416f3a20ee3e8dcf540b8196a836acd671b2d0c3 Mon Sep 17 00:00:00 2001 From: Alex Janka Date: Thu, 26 Dec 2024 14:08:26 +1100 Subject: [PATCH] reqwest: no default features --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 443705d..28749eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,11 @@ miette = { version = "7.4.0", features = ["fancy"] } thiserror = "2.0.9" tokio = { version = "1.42.0", features = ["full"] } tracing = "0.1.41" -reqwest = { version = "0.12.9", features = ["rustls-tls", "cookies", "json"] } +reqwest = { version = "0.12.9", default-features = false, features = [ + "rustls-tls", + "cookies", + "json", +] } url = "2.5.4" serde = { version = "1.0.216", features = ["derive"] } serde_json = "1.0.134"