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"] }