2020-03-18 22:31:36 -05:00
|
|
|
[package]
|
|
|
|
name = "warp_subscriptions"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
2020-07-21 02:38:22 -05:00
|
|
|
publish = false
|
2020-03-18 22:31:36 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2020-10-19 04:23:17 -05:00
|
|
|
env_logger = "0.8.1"
|
2020-06-30 10:13:15 -05:00
|
|
|
futures = "0.3.1"
|
2020-03-18 22:31:36 -05:00
|
|
|
log = "0.4.8"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
tokio = { version = "0.2", features = ["rt-core", "macros"] }
|
|
|
|
warp = "0.2.1"
|
|
|
|
|
2020-07-29 03:23:44 -05:00
|
|
|
juniper = { path = "../../juniper" }
|
|
|
|
juniper_graphql_ws = { path = "../../juniper_graphql_ws" }
|
|
|
|
juniper_warp = { path = "../../juniper_warp", features = ["subscriptions"] }
|