From 2895e07f96151a63e3e71c28ed64d34eda3ed3fa Mon Sep 17 00:00:00 2001 From: Tyler Hawkes Date: Mon, 7 Jul 2025 12:49:52 -0600 Subject: [PATCH] Don't use default features for reqwest --- Cargo.lock | 33 ++------------------------------- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74d3d715e..388fbc723 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -159,12 +159,6 @@ dependencies = [ "syn 2.0.48", ] -[[package]] -name = "atomic-waker" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" - [[package]] name = "autocfg" version = "1.1.0" @@ -990,25 +984,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "h2" -version = "0.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab" -dependencies = [ - "atomic-waker", - "bytes", - "fnv", - "futures-core", - "futures-sink", - "http 1.1.0", - "indexmap", - "slab", - "tokio", - "tokio-util", - "tracing", -] - [[package]] name = "hashbrown" version = "0.14.3" @@ -1146,7 +1121,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-util", - "h2 0.3.26", + "h2", "http 0.2.11", "http-body 0.4.6", "httparse", @@ -1169,7 +1144,6 @@ dependencies = [ "bytes", "futures-channel", "futures-util", - "h2 0.4.5", "http 1.1.0", "http-body 1.0.0", "httparse", @@ -2256,7 +2230,7 @@ dependencies = [ "encoding_rs", "futures-core", "futures-util", - "h2 0.3.26", + "h2", "http 0.2.11", "http-body 0.4.6", "hyper 0.14.28", @@ -2291,11 +2265,9 @@ checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37" dependencies = [ "base64 0.22.1", "bytes", - "encoding_rs", "futures-channel", "futures-core", "futures-util", - "h2 0.4.5", "http 1.1.0", "http-body 1.0.0", "http-body-util", @@ -2320,7 +2292,6 @@ dependencies = [ "serde_json", "serde_urlencoded", "sync_wrapper", - "system-configuration", "tokio", "tokio-native-tls", "tokio-rustls", diff --git a/Cargo.toml b/Cargo.toml index 099a762ca..0f2399ede 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ openssl = { version = "0.10.72", optional = true } rand = "0.8.4" regex = "1.10.3" reqsign = { version = "0.16.0", optional = true } -reqwest = { version = "0.12", features = [ +reqwest = { version = "0.12", default-features = false, features = [ "json", "blocking", "stream",