eb941e509a
Co-authored-by: tyranron <tyranron@gmail.com> Co-authored-by: Christian Legnitto <LegNeato@users.noreply.github.com>
20 lines
616 B
TOML
20 lines
616 B
TOML
[package]
|
|
name = "warp_subscriptions"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
env_logger = "0.6.2"
|
|
futures = { version = "=0.3.1" }
|
|
log = "0.4.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "0.2", features = ["rt-core", "macros"] }
|
|
warp = "0.2.1"
|
|
|
|
# TODO#433: get crates from GitHub
|
|
juniper = { path = "../../juniper" }
|
|
juniper_subscriptions = { path = "../../juniper_subscriptions"}
|
|
juniper_warp = { path = "../../juniper_warp", features = ["subscriptions"] }
|