From 25e5141c36a45f5690b711f617b0ef04d89517d8 Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 4 Jan 2022 21:01:12 +0000 Subject: [PATCH] test: fix version requirement of tokio-stream (#4376) --- tokio-test/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-test/Cargo.toml b/tokio-test/Cargo.toml index 59af228da..16d688b6e 100644 --- a/tokio-test/Cargo.toml +++ b/tokio-test/Cargo.toml @@ -18,7 +18,7 @@ categories = ["asynchronous", "testing"] [dependencies] tokio = { version = "1.2.0", path = "../tokio", features = ["rt", "sync", "time", "test-util"] } -tokio-stream = { version = "0.1", path = "../tokio-stream" } +tokio-stream = { version = "0.1.1", path = "../tokio-stream" } async-stream = "0.3" bytes = "1.0.0"