2020-03-18 22:31:36 -05:00
|
|
|
[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"
|
|
|
|
|
2020-03-30 22:43:00 -05:00
|
|
|
juniper = { git = "https://github.com/graphql-rust/juniper" }
|
|
|
|
juniper_subscriptions = { git = "https://github.com/graphql-rust/juniper" }
|
|
|
|
juniper_warp = { git = "https://github.com/graphql-rust/juniper", features = ["subscriptions"] }
|