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"
|
2022-12-19 09:31:23 +01:00
|
|
|
rust-version = "1.65"
|
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-11-28 12:13:09 +02:00
|
|
|
env_logger = "0.10"
|
2022-04-08 17:44:50 +03:00
|
|
|
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"
|
2022-12-18 18:39:59 +01:00
|
|
|
reqwest = { version = "0.11", features = ["rustls-tls"], default-features = false }
|
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"
|