8d7ba8295c
* Impl subscriptions for juniper_actix * Add random_human example subscription * Add actix_subscriptions example to CI * fixup! Add random_human example subscription * Migrate actix subscriptions to juniper_graphql_ws * Simplify error handling * Change unwrap to expect * Close connection on server serialization error Co-authored-by: Christian Legnitto <LegNeato@users.noreply.github.com>
22 lines
610 B
TOML
22 lines
610 B
TOML
[package]
|
|
name = "actix_subscriptions"
|
|
version = "0.1.0"
|
|
authors = ["Mihai Dinculescu <mihai.dinculescu@outlook.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
actix-web = "2.0.0"
|
|
actix-rt = "1.1.1"
|
|
actix-cors = "0.2.0"
|
|
|
|
futures = "0.3.5"
|
|
tokio = { version = "0.2", features = ["rt-core", "macros"] }
|
|
env_logger = "0.7.1"
|
|
serde = "1.0.114"
|
|
serde_json = "1.0.57"
|
|
rand = "0.7.3"
|
|
|
|
juniper = { path = "../../juniper", features = ["expose-test-schema", "serde_json"] }
|
|
juniper_actix = { path = "../../juniper_actix", features = ["subscriptions"] }
|
|
juniper_graphql_ws = { path = "../../juniper_graphql_ws" }
|