2020-03-19 06:31:36 +03:00
|
|
|
[package]
|
|
|
|
name = "warp_subscriptions"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
2020-07-20 21:38:22 -10:00
|
|
|
publish = false
|
2020-03-19 06:31:36 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2020-10-19 12:23:17 +03:00
|
|
|
env_logger = "0.8.1"
|
2020-06-30 18:13:15 +03:00
|
|
|
futures = "0.3.1"
|
2020-03-19 06:31:36 +03: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 04:23:44 -04:00
|
|
|
juniper = { path = "../../juniper" }
|
|
|
|
juniper_graphql_ws = { path = "../../juniper_graphql_ws" }
|
|
|
|
juniper_warp = { path = "../../juniper_warp", features = ["subscriptions"] }
|