juniper/juniper_graphql_ws/Cargo.toml
Chris 84c9720b53
GraphQL-WS crate and Warp subscriptions update (#721)
* update pre-existing juniper_warp::subscriptions

* initial draft

* finish up, update example

* polish + timing test

* fix pre-existing bug

* rebase updates

* address comments

* add release.toml

* makefile and initial changelog

* add new Cargo.toml to juniper/release.toml
2020-07-28 22:23:44 -10:00

19 lines
718 B
TOML

[package]
name = "juniper_graphql_ws"
version = "0.1.0"
authors = ["Christopher Brown <ccbrown112@gmail.com>"]
license = "BSD-2-Clause"
description = "Graphql-ws protocol implementation for Juniper"
documentation = "https://docs.rs/juniper_graphql_ws"
repository = "https://github.com/graphql-rust/juniper"
keywords = ["graphql-ws", "juniper", "graphql", "apollo"]
edition = "2018"
[dependencies]
juniper = { version = "0.14.2", path = "../juniper", default-features = false }
juniper_subscriptions = { path = "../juniper_subscriptions" }
serde = { version = "1.0.8", features = ["derive"] }
tokio = { version = "0.2", features = ["macros", "rt-core", "time"] }
[dev-dependencies]
serde_json = { version = "1.0.2" }