futures-await-test 0.1.2

Async test support for Rust through a procedural macro. This crate defines the `#[async_test]` attribute to make writing tests that use async/await easier.
Documentation
[package]
name = "futures-await-test"
version = "0.1.2"
authors = ["Gergely Nagy <ngg@ngg.hu>"]
license = "MIT"
readme = "README.md"
keywords = ["async"]
categories = ["asynchronous", "rust-patterns"]
repository = "https://github.com/ngg/futures-await-test"
homepage = "https://github.com/ngg/futures-await-test"
description = """
Async test support for Rust through a procedural macro. This crate defines the
`#[async_test]` attribute to make writing tests that use async/await easier.
"""

[badges]
travis-ci = { repository = "ngg/futures-await-test" }

[lib]
proc-macro = true

[dependencies]
proc-macro2 = { version = "0.2", features = ["nightly"] }
quote = "0.4"
syn = { version = "0.12", features = ["full", "parsing", "printing"], default-features = false }

[dev-dependencies]
futures-await = "0.1"