From d21cc68933c4b62320859a45cd01101cb9e1893c Mon Sep 17 00:00:00 2001 From: tyranron Date: Sun, 18 Dec 2022 18:39:59 +0100 Subject: [PATCH] Fix `reqwest` features --- examples/warp_async/Cargo.toml | 2 +- juniper_hyper/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/warp_async/Cargo.toml b/examples/warp_async/Cargo.toml index 85205e7e..66dd9ca6 100644 --- a/examples/warp_async/Cargo.toml +++ b/examples/warp_async/Cargo.toml @@ -12,6 +12,6 @@ futures = "0.3" juniper = { path = "../../juniper" } juniper_warp = { path = "../../juniper_warp" } log = "0.4" -reqwest = { version = "0.11", features = ["rustls-tls"] } +reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false } tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } warp = "0.3" diff --git a/juniper_hyper/Cargo.toml b/juniper_hyper/Cargo.toml index a67c6985..3d2cdfc3 100644 --- a/juniper_hyper/Cargo.toml +++ b/juniper_hyper/Cargo.toml @@ -29,5 +29,5 @@ http-body = "0.4.5" [dev-dependencies] juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] } pretty_env_logger = "0.4" -reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] } +reqwest = { version = "0.11", features = ["blocking", "rustls-tls"], default-features = false } tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }