2020-08-09 17:19:34 -05:00
|
|
|
[package]
|
|
|
|
name = "actix_subscriptions"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
2020-10-20 04:57:14 -05:00
|
|
|
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
2020-08-09 17:19:34 -05:00
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2020-10-20 04:57:14 -05:00
|
|
|
actix-web = "3.0"
|
|
|
|
actix-cors = "0.5"
|
|
|
|
futures = "0.3"
|
|
|
|
tokio = { version = "0.2", features = ["macros", "rt-core"] }
|
|
|
|
env_logger = "0.8"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
rand = "0.7"
|
2020-08-09 17:19:34 -05:00
|
|
|
|
2020-08-19 02:08:53 -05:00
|
|
|
juniper = { path = "../../juniper", features = ["expose-test-schema"] }
|
2020-08-09 17:19:34 -05:00
|
|
|
juniper_actix = { path = "../../juniper_actix", features = ["subscriptions"] }
|
|
|
|
juniper_graphql_ws = { path = "../../juniper_graphql_ws" }
|