juniper/examples/warp_async/Cargo.toml

18 lines
476 B
TOML
Raw Normal View History

2019-08-19 15:40:22 -05:00
[package]
name = "example_warp_async"
version = "0.0.0"
edition = "2021"
2022-12-19 02:31:23 -06:00
rust-version = "1.65"
authors = ["Christoph Herzog <chris@theduke.at>"]
publish = false
2019-08-19 15:40:22 -05:00
[dependencies]
env_logger = "0.10"
futures = "0.3"
juniper = { path = "../../juniper" }
juniper_warp = { path = "../../juniper_warp" }
log = "0.4"
2022-12-18 11:39:59 -06:00
reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false }
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
warp = "0.3"