2020-07-29 03:23:44 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_graphql_ws"
|
2022-04-08 09:44:50 -05:00
|
|
|
version = "0.4.0-dev"
|
2022-07-13 05:30:51 -05:00
|
|
|
edition = "2021"
|
2023-11-01 13:00:05 -05:00
|
|
|
rust-version = "1.73"
|
2023-10-17 09:12:20 -05:00
|
|
|
description = "GraphQL over WebSocket Protocol implementations for `juniper` crate."
|
2020-07-29 03:23:44 -05:00
|
|
|
license = "BSD-2-Clause"
|
2023-10-17 09:12:20 -05:00
|
|
|
authors = [
|
|
|
|
"Christopher Brown <ccbrown112@gmail.com>",
|
|
|
|
"Kai Ren <tyranron@gmail.com>",
|
|
|
|
]
|
2020-07-29 03:23:44 -05:00
|
|
|
documentation = "https://docs.rs/juniper_graphql_ws"
|
2022-04-08 09:44:50 -05:00
|
|
|
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_graphql_ws"
|
2020-07-29 03:23:44 -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"]
|
2023-10-17 09:12:20 -05:00
|
|
|
keywords = ["apollo", "graphql-transport-ws", "graphql-ws", "subscription", "websocket"]
|
2022-04-08 09:44:50 -05:00
|
|
|
exclude = ["/release.toml"]
|
2020-07-29 03:23:44 -05:00
|
|
|
|
2023-10-17 09:12:20 -05:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[features]
|
|
|
|
graphql-transport-ws = []
|
|
|
|
graphql-ws = []
|
|
|
|
|
2020-07-29 03:23:44 -05:00
|
|
|
[dependencies]
|
2022-02-02 12:08:41 -06:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
|
2022-04-08 09:44:50 -05:00
|
|
|
juniper_subscriptions = { version = "0.17.0-dev", path = "../juniper_subscriptions" }
|
2022-10-21 11:07:17 -05:00
|
|
|
serde = { version = "1.0.122", features = ["derive"], default-features = false }
|
2022-04-08 09:44:50 -05:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt", "time"], default-features = false }
|
2020-07-29 03:23:44 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-10-21 11:07:17 -05:00
|
|
|
serde_json = "1.0.18"
|