2020-03-18 22:31:36 -05:00
|
|
|
[package]
|
2022-04-08 09:44:50 -05:00
|
|
|
name = "example_warp_subscriptions"
|
|
|
|
version = "0.0.0"
|
2022-07-13 05:30:51 -05:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.62"
|
2020-07-21 02:38:22 -05:00
|
|
|
publish = false
|
2020-03-18 22:31:36 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2022-04-08 09:44:50 -05:00
|
|
|
async-stream = "0.3"
|
2021-07-16 04:01:18 -05:00
|
|
|
env_logger = "0.9"
|
2022-08-29 09:10:40 -05:00
|
|
|
futures = "0.3"
|
2022-04-08 09:44:50 -05:00
|
|
|
juniper = { path = "../../juniper" }
|
|
|
|
juniper_graphql_ws = { path = "../../juniper_graphql_ws" }
|
|
|
|
juniper_warp = { path = "../../juniper_warp", features = ["subscriptions"] }
|
2020-03-18 22:31:36 -05:00
|
|
|
log = "0.4.8"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2022-04-08 09:44:50 -05:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
2021-06-29 01:22:45 -05:00
|
|
|
warp = "0.3"
|