• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "async-stream-impl"
3version = "0.3.2"
4edition = "2018"
5license = "MIT"
6authors = ["Carl Lerche <me@carllerche.com>"]
7description = "proc macros for async-stream crate"
8documentation = "https://docs.rs/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]
21async-stream = { path = "../async-stream" }
22futures-core = "0.3"
23futures-util = "0.3"
24tokio = { version = "1", features = ["full"] }
25