forked from alexcrichton/futures-await
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "futures-await"
version = "0.2.0-alpha"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["async"]
categories = ["asynchronous", "rust-patterns"]
repository = "https://github.com/alexcrichton/futures-await"
homepage = "https://github.com/alexcrichton/futures-await"
documentation = "https://docs.rs/futures-await"
description = """
Async/await syntax for Rust through a procedural macro. This crate defines the
`#[async]` macro for functions, the `await!` macro for function bodies, and
intends to be used with the `futures` crate on crates.io as well.
"""
[workspace]
members = ["testcrate"]
[dependencies]
futures-await-async-macro = { path = "futures-await-async-macro", version = "0.2.0-alpha" }
futures-await-await-macro = { path = "futures-await-await-macro", version = "0.2.0-alpha" }
[dependencies.futures]
git = "https://github.com/Nemo157/futures-rs"
default-features = false
features = ["nightly"]
[features]
std = ["futures/std"]
default = ["std"]