2019-08-18 21:36:44 +02:00
|
|
|
[package]
|
|
|
|
name = "async_await"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Christoph Herzog <chris@theduke.at>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
2020-01-21 08:04:08 -08:00
|
|
|
[features]
|
|
|
|
async = []
|
2019-08-18 21:36:44 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
juniper = { path = "../../juniper", features = ["async"] }
|
2020-02-04 09:57:47 +01:00
|
|
|
futures = "0.3.1"
|
2020-01-21 23:37:45 -08:00
|
|
|
tokio = { version = "0.2", features = ["rt-core", "time", "macros"] }
|