2020-08-09 17:19:34 -05:00
|
|
|
[package]
|
|
|
|
name = "actix_subscriptions"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-12 11:32:15 -05:00
|
|
|
actix-web = "3.0.0"
|
2020-10-08 07:57:47 -05:00
|
|
|
actix-cors = "0.4.1"
|
2020-08-09 17:19:34 -05:00
|
|
|
|
|
|
|
futures = "0.3.5"
|
|
|
|
tokio = { version = "0.2", features = ["rt-core", "macros"] }
|
|
|
|
env_logger = "0.7.1"
|
2020-08-19 02:08:53 -05:00
|
|
|
serde = "1.0.115"
|
2020-08-09 17:19:34 -05:00
|
|
|
serde_json = "1.0.57"
|
|
|
|
rand = "0.7.3"
|
|
|
|
|
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" }
|