2020-03-18 22:31:36 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_subscriptions"
|
2022-04-08 09:44:50 -05:00
|
|
|
version = "0.17.0-dev"
|
2022-07-13 05:30:51 -05:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.62"
|
2022-04-08 09:44:50 -05:00
|
|
|
description = "Juniper `SubscriptionCoordinator` and `SubscriptionConnection` implementations."
|
2020-03-18 22:31:36 -05:00
|
|
|
license = "BSD-2-Clause"
|
2022-04-08 09:44:50 -05:00
|
|
|
authors = ["nWacky <gosha.evtushenko@gmail.com>"]
|
2020-03-18 22:31:36 -05:00
|
|
|
documentation = "https://docs.rs/juniper_subscriptions"
|
2022-04-08 09:44:50 -05:00
|
|
|
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_subscriptions"
|
2020-03-18 22:31:36 -05:00
|
|
|
repository = "https://github.com/graphql-rust/juniper"
|
2022-04-08 09:44:50 -05:00
|
|
|
readme = "README.md"
|
|
|
|
categories = ["asynchronous", "web-programming", "web-programming::http-server"]
|
|
|
|
keywords = ["graphql", "server", "subscription", "web", "websocket"]
|
|
|
|
exclude = ["/release.toml"]
|
2020-03-18 22:31:36 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2020-04-08 20:40:22 -05:00
|
|
|
futures = "0.3.1"
|
2022-02-02 12:08:41 -06:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
|
2020-03-18 22:31:36 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1.0"
|
2022-04-08 09:44:50 -05:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt"] }
|