You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
691 B
25 lines
691 B
[package]
|
|
name = "async-stream-impl"
|
|
version = "0.3.0"
|
|
edition = "2018"
|
|
license = "MIT"
|
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
|
description = "proc macros for async-stream crate"
|
|
documentation = "https://docs.rs/async-stream-impl/0.3.0/async-stream-impl"
|
|
homepage = "https://github.com/tokio-rs/async-stream"
|
|
repository = "https://github.com/tokio-rs/async-stream"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
syn = { version = "1", features = ["extra-traits", "full", "visit-mut"]}
|
|
quote = "1"
|
|
|
|
[dev-dependencies]
|
|
# async-stream = { version = "0.3.0", path = "../async-stream" }
|
|
futures-core = "0.3"
|
|
futures-util = "0.3"
|
|
tokio = { version = "0.2", features = ["full"] }
|