2020-03-19 06:31:36 +03:00
|
|
|
[package]
|
2022-04-08 17:44:50 +03:00
|
|
|
name = "example_warp_subscriptions"
|
|
|
|
version = "0.0.0"
|
2022-07-13 12:30:51 +02:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.62"
|
2020-07-20 21:38:22 -10:00
|
|
|
publish = false
|
2020-03-19 06:31:36 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-04-08 17:44:50 +03:00
|
|
|
async-stream = "0.3"
|
2022-11-28 12:13:09 +02:00
|
|
|
env_logger = "0.10"
|
2022-08-29 17:10:40 +03:00
|
|
|
futures = "0.3"
|
2022-04-08 17:44:50 +03:00
|
|
|
juniper = { path = "../../juniper" }
|
|
|
|
juniper_graphql_ws = { path = "../../juniper_graphql_ws" }
|
|
|
|
juniper_warp = { path = "../../juniper_warp", features = ["subscriptions"] }
|
2020-03-19 06:31:36 +03:00
|
|
|
log = "0.4.8"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
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"
|