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