2020-03-18 22:31:36 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_subscriptions"
|
2024-03-20 11:26:52 -05:00
|
|
|
version = "0.17.0"
|
2022-07-13 05:30:51 -05:00
|
|
|
edition = "2021"
|
2023-11-01 13:00:05 -05:00
|
|
|
rust-version = "1.73"
|
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]
|
2022-08-29 09:10:40 -05:00
|
|
|
futures = "0.3.22"
|
2024-04-04 07:50:56 -05:00
|
|
|
juniper = { version = "0.16", path = "../juniper", default-features = false }
|
2020-03-18 22:31:36 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-21 11:07:17 -05:00
|
|
|
serde_json = "1.0.18"
|
2023-09-21 16:24:41 -05:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|