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]
|
2021-11-23 02:49:55 -06:00
|
|
|
actix-web = "4.0.0-beta.12"
|
|
|
|
actix-cors = "0.6.0-beta.4"
|
2020-10-20 04:57:14 -05:00
|
|
|
futures = "0.3"
|
2021-07-16 04:01:18 -05:00
|
|
|
env_logger = "0.9"
|
2020-10-20 04:57:14 -05:00
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
2021-06-29 01:22:45 -05:00
|
|
|
rand = "0.8"
|
|
|
|
tokio = "1.0"
|
|
|
|
async-stream = "0.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" }
|