stream: remove path deps (#3376)

This commit is contained in:
Alice Ryhl 2021-01-04 21:04:22 +01:00 committed by GitHub
parent 4beb1862ac
commit 3b840fb305
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 }