739cc3bfc2
* Upgraded tokio, warp, hyper and actix * Code formatting * actix-web temporary version fix specification * Error handling fix on juniper_rocket Co-authored-by: Christian Legnitto <LegNeato@users.noreply.github.com>
18 lines
503 B
TOML
18 lines
503 B
TOML
[package]
|
|
name = "warp_subscriptions"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
env_logger = "0.8.1"
|
|
futures = "0.3.1"
|
|
log = "0.4.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
warp = "0.3"
|
|
async-stream = "0.3"
|
|
juniper = { path = "../../juniper" }
|
|
juniper_graphql_ws = { path = "../../juniper_graphql_ws" }
|
|
juniper_warp = { path = "../../juniper_warp", features = ["subscriptions"] }
|