forked from rust-lang/futures-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 717 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (21 loc) · 717 Bytes
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 = "futures-async-macro-preview"
edition = "2018"
version = "0.3.0-alpha.17"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-lang-nursery/futures-rs"
homepage = "https://rust-lang-nursery.github.io/futures-rs"
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.14/futures_async_macro"
description = """
Definition of the `#[async_stream]` macro for the `futures-rs` crate as well as a few other assorted macros.
"""
[lib]
name = "futures_async_macro"
proc-macro = true
[features]
std = []
[dependencies]
proc-macro2 = "0.4"
quote = "0.6"
syn = { version = "0.15.34", features = ["full", "fold"] }