18 lines
619 B
TOML
18 lines
619 B
TOML
|
[package]
|
||
|
name = "warp_async"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Christoph Herzog <chris@theduke.at>"]
|
||
|
edition = "2018"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
juniper = { git = "https://github.com/graphql-rust/juniper", branch = "async-await", features = ["async"] }
|
||
|
juniper_warp = { git = "https://github.com/graphql-rust/juniper", branch = "async-await", features = ["async"] }
|
||
|
log = "0.4.8"
|
||
|
env_logger = "0.6.2"
|
||
|
warp = "0.1.19"
|
||
|
futures-preview = { version = "0.3.0-alpha.18", features = ["nightly", "async-await", "compat"] }
|
||
|
reqwest = "0.9.19"
|
||
|
|