From c12f40c0f5e09827320c1f99ce1f210a38830e9d Mon Sep 17 00:00:00 2001 From: Jairo H Wiethan Date: Wed, 8 Apr 2020 22:40:22 -0300 Subject: [PATCH] Removed 'compat' feature from futures on juniper_subscriptions and juniper_warp (#606) --- juniper_subscriptions/Cargo.toml | 2 +- juniper_warp/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/juniper_subscriptions/Cargo.toml b/juniper_subscriptions/Cargo.toml index 27ccddd5..cff0f161 100644 --- a/juniper_subscriptions/Cargo.toml +++ b/juniper_subscriptions/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" [dependencies] -futures = { version = "=0.3.1", features = ["compat"] } +futures = "0.3.1" juniper = { version = "0.14.2", path = "../juniper", default-features = false } [dev-dependencies] diff --git a/juniper_warp/Cargo.toml b/juniper_warp/Cargo.toml index 24d20c5c..8fae6374 100644 --- a/juniper_warp/Cargo.toml +++ b/juniper_warp/Cargo.toml @@ -13,7 +13,7 @@ subscriptions = ["juniper_subscriptions"] [dependencies] warp = "0.2" -futures = { version = "0.3.1", features = ["compat"] } +futures = "0.3.1" juniper = { version = "0.14.2", path = "../juniper", default-features = false } juniper_subscriptions = { path = "../juniper_subscriptions", optional = true} tokio = { version = "0.2", features = ["rt-core", "blocking"] }