1[package] 2name = "async-stream" 3# When releasing to crates.io: 4# - Update version number 5# - README.md 6# - Update CHANGELOG.md 7# - Create git tag 8version = "0.3.2" 9edition = "2018" 10license = "MIT" 11authors = ["Carl Lerche <me@carllerche.com>"] 12description = "Asynchronous streams using async & await notation" 13documentation = "https://docs.rs/async-stream" 14homepage = "https://github.com/tokio-rs/async-stream" 15repository = "https://github.com/tokio-rs/async-stream" 16readme = "README.md" 17 18[dependencies] 19async-stream-impl = { version = "=0.3.2", path = "../async-stream-impl" } 20futures-core = "0.3" 21 22[dev-dependencies] 23futures-util = "0.3" 24tokio = { version = "1", features = ["full"] } 25tokio-test = "0.4" 26trybuild = "1" 27