summaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: dd6d9d9013ade9f38a1c11a361e46039e5a6c31c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[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"] }