Removed 'compat' feature from futures on juniper_subscriptions and juniper_warp (#606)

This commit is contained in:
Jairo H Wiethan 2020-04-08 22:40:22 -03:00 committed by GitHub
parent 1412561ffd
commit c12f40c0f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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]

View file

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