From 7d1c5ab554595e591ddd5f83f37a385cd34edbe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Wed, 2 Oct 2019 19:45:52 +0200 Subject: [PATCH] Enable feature --- collator/Cargo.toml | 2 +- consensus/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/collator/Cargo.toml b/collator/Cargo.toml index a753c16ea7..748fc7cdc6 100644 --- a/collator/Cargo.toml +++ b/collator/Cargo.toml @@ -19,5 +19,5 @@ polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = log = "0.4.8" codec = { package = "parity-scale-codec", version = "1.0.6", features = [ "derive" ] } futures = "0.1.29" -futures03 = { package = "futures-preview", version = "0.3.0-alpha.19"} +futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } parking_lot = "0.9" diff --git a/consensus/Cargo.toml b/consensus/Cargo.toml index 7042a35bd8..f7c2edaa5c 100644 --- a/consensus/Cargo.toml +++ b/consensus/Cargo.toml @@ -17,7 +17,7 @@ polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = polkadot-runtime = { git = "https://github.com/paritytech/polkadot", branch = "bkchr-cumulus-branch" } # other deps -futures = { package = "futures-preview", version = "0.3.0-alpha.19"} +futures = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] } tokio = "0.1.22" codec = { package = "parity-scale-codec", version = "1.0.5", features = [ "derive" ] } log = "0.4"