From 472ff749040bef94708a9c57179e3ae62e884db6 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Mon, 26 Aug 2019 10:42:26 +1200 Subject: [PATCH] Fix build by pinning futures-async-stream This pins futures-async-stream to fix the current build failure --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d1b760b9ea..4b30972a44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ ordered-float = {version = "1.0.2", features = ["serde"]} prettyprint = "0.7.0" futures-preview = { version = "=0.3.0-alpha.17", features = ["compat", "io-compat"] } futures-sink-preview = "=0.3.0-alpha.17" -futures-async-stream = "0.1.0-alpha.1" +futures-async-stream = "=0.1.0-alpha.2" futures_codec = "0.2.5" term = "0.5.2" bytes = "0.4.12"