From 3b840fb30540aecbd309ee38899b897b141acc8d Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Mon, 4 Jan 2021 21:04:22 +0100 Subject: [PATCH] stream: remove path deps (#3376) --- tokio-stream/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index efb1a07aa..086f2ad29 100644 --- a/tokio-stream/Cargo.toml +++ b/tokio-stream/Cargo.toml @@ -29,10 +29,10 @@ fs = ["tokio/fs"] [dependencies] futures-core = { version = "0.3.0" } pin-project-lite = "0.2.0" -tokio = { version = "1.0", path = "../tokio", features = ["sync"] } +tokio = { version = "1.0", features = ["sync"] } [dev-dependencies] -tokio = { version = "1.0", path = "../tokio", features = ["full"] } +tokio = { version = "1.0", features = ["full", "test-util"] } tokio-test = { path = "../tokio-test" } async-stream = "0.3" futures = { version = "0.3", default-features = false }