2020-07-29 03:23:44 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_graphql_ws"
|
2021-07-08 02:10:57 -05:00
|
|
|
version = "0.3.0"
|
2020-10-19 11:42:27 -05:00
|
|
|
edition = "2018"
|
2020-07-29 03:23:44 -05:00
|
|
|
authors = ["Christopher Brown <ccbrown112@gmail.com>"]
|
|
|
|
license = "BSD-2-Clause"
|
2020-10-19 11:42:27 -05:00
|
|
|
description = "GraphQL over WebSocket protocol implementation for Juniper"
|
2020-07-29 03:23:44 -05:00
|
|
|
documentation = "https://docs.rs/juniper_graphql_ws"
|
|
|
|
repository = "https://github.com/graphql-rust/juniper"
|
2020-10-19 11:42:27 -05:00
|
|
|
keywords = ["apollo", "graphql", "graphql-ws", "juniper"]
|
2020-07-29 03:23:44 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2021-07-08 02:01:56 -05:00
|
|
|
juniper = { version = "0.15.7", path = "../juniper", default-features = false }
|
2021-07-08 02:09:19 -05:00
|
|
|
juniper_subscriptions = { version = "0.16.0", path = "../juniper_subscriptions" }
|
2020-10-19 11:42:27 -05:00
|
|
|
serde = { version = "1.0.8", features = ["derive"], default-features = false }
|
2021-06-29 01:22:45 -05:00
|
|
|
tokio = { version = "1", features = ["macros", "rt", "time"], default-features = false }
|
2020-07-29 03:23:44 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-10-19 11:42:27 -05:00
|
|
|
serde_json = "1.0"
|