f9d90277bf
- track GraphiQL new version via @dependabot - automate GraphiQL integration glue adapting for new versions - rework `example/warp_subscriptions` to support subscriptions in new GraphiQL
20 lines
611 B
TOML
20 lines
611 B
TOML
[package]
|
|
name = "example_warp_subscriptions"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
async-stream = "0.3"
|
|
env_logger = "0.10"
|
|
futures = "0.3"
|
|
juniper = { path = "../../juniper" }
|
|
juniper_graphql_ws = { path = "../../juniper_graphql_ws" }
|
|
juniper_graphql_transport_ws = { path = "../../juniper_graphql_transport_ws" }
|
|
juniper_warp = { path = "../../juniper_warp", features = ["subscriptions"] }
|
|
log = "0.4.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
|
warp = "0.3"
|