2020-08-09 17:19:34 -05:00
|
|
|
[package]
|
2022-04-08 09:44:50 -05:00
|
|
|
name = "example_actix_subscriptions"
|
|
|
|
version = "0.0.0"
|
2022-07-13 05:30:51 -05:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.62"
|
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]
|
2022-03-04 09:53:27 -06:00
|
|
|
actix-cors = "0.6"
|
2022-04-08 09:44:50 -05:00
|
|
|
actix-web = "4.0"
|
2021-06-29 01:22:45 -05:00
|
|
|
async-stream = "0.3"
|
2022-04-08 09:44:50 -05:00
|
|
|
env_logger = "0.9"
|
|
|
|
futures = "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" }
|
2022-04-08 09:44:50 -05:00
|
|
|
rand = "0.8"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
tokio = "1.0"
|