Rename unstable-stream feature to stream (#433)

This commit is contained in:
Sean McArthur
2019-12-03 10:38:50 -08:00
committed by GitHub
parent eab9c0b410
commit 881832cde9
5 changed files with 9 additions and 10 deletions

View File

@@ -19,8 +19,7 @@ edition = "2018"
[features]
# Enables `futures::Stream` implementations for various types.
# This is an optional feature due to `Stream` not being stable.
unstable-stream = []
stream = []
# Enables **unstable** APIs. Any API exposed by this feature has no backwards
# compatibility guarantees. In other words, you should not use this feature for
@@ -38,9 +37,9 @@ members = [
]
[dependencies]
futures-core = "0.3"
futures-sink = "0.3"
futures-util = { version = "0.3", default-features = false, features = [] }
futures-core = { version = "0.3", default-features = false }
futures-sink = { version = "0.3", default-features = false }
futures-util = { version = "0.3", default-features = false }
tokio-util = { version = "0.2", features = ["codec"] }
tokio = { version = "0.2", features = ["io-util", "sync"] }
bytes = "0.5.2"