1[package] 2name = "async-stream-impl" 3version = "0.3.0" 4edition = "2018" 5license = "MIT" 6authors = ["Carl Lerche <me@carllerche.com>"] 7description = "proc macros for async-stream crate" 8documentation = "https://docs.rs/async-stream-impl/0.3.0/async-stream-impl" 9homepage = "https://github.com/tokio-rs/async-stream" 10repository = "https://github.com/tokio-rs/async-stream" 11 12[lib] 13proc-macro = true 14 15[dependencies] 16proc-macro2 = "1" 17syn = { version = "1", features = ["extra-traits", "full", "visit-mut"]} 18quote = "1" 19 20[dev-dependencies] 21# async-stream = { version = "0.3.0", path = "../async-stream" } 22futures-core = "0.3" 23futures-util = "0.3" 24tokio = { version = "0.2", features = ["full"] } 25