2019-08-19 22:40:22 +02:00
|
|
|
[package]
|
2022-04-08 17:44:50 +03:00
|
|
|
name = "example_warp_async"
|
|
|
|
version = "0.0.0"
|
2022-07-13 12:30:51 +02:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.62"
|
2020-06-14 16:26:18 +03:00
|
|
|
authors = ["Christoph Herzog <chris@theduke.at>"]
|
2022-04-08 17:44:50 +03:00
|
|
|
publish = false
|
2019-08-19 22:40:22 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-04-08 17:44:50 +03:00
|
|
|
env_logger = "0.9"
|
|
|
|
futures = "0.3"
|
2021-01-26 17:41:03 +00:00
|
|
|
juniper = { path = "../../juniper" }
|
|
|
|
juniper_warp = { path = "../../juniper_warp" }
|
2022-04-08 17:44:50 +03:00
|
|
|
log = "0.4"
|
2021-01-05 22:44:11 -10:00
|
|
|
reqwest = { version = "0.11", features = ["rustls-tls"] }
|
2022-04-08 17:44:50 +03:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
2021-06-29 03:22:45 -03:00
|
|
|
warp = "0.3"
|