From 60742ea36402f788abab4a4e1acd5c405e1d331e Mon Sep 17 00:00:00 2001 From: Matt Hunzinger Date: Fri, 27 Sep 2019 13:29:06 -0400 Subject: [PATCH] Pin futures crate versions --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f25426a..809eefd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,8 +30,8 @@ async-task = "1.0.0" cfg-if = "0.1.9" crossbeam-channel = "0.3.9" crossbeam-deque = "0.7.1" -futures-core-preview = "0.3.0-alpha.18" -futures-io-preview = "0.3.0-alpha.18" +futures-core-preview = "=0.3.0-alpha.18" +futures-io-preview = "=0.3.0-alpha.18" futures-timer = "0.4.0" lazy_static = "1.4.0" log = { version = "0.4.8", features = ["kv_unstable"] } @@ -50,9 +50,9 @@ surf = "1.0.2" tempdir = "0.3.7" # These are used by the book for examples -futures-channel-preview = "0.3.0-alpha.18" -futures-util-preview = "0.3.0-alpha.18" +futures-channel-preview = "=0.3.0-alpha.18" +futures-util-preview = "=0.3.0-alpha.18" [dev-dependencies.futures-preview] -version = "0.3.0-alpha.18" +version = "=0.3.0-alpha.18" features = ["std", "nightly", "async-await"]