9849736582
- consider `juniper_graphql_transport_ws` crate on CI - implement auto-selection of protocol in `juniper_warp` crate - support `graphql-transport-ws` protocol in `juniper_actix` crate - implement auto-selection of protocol in `juniper_actix` crate Additionally: - move `examples/warp_subscriptions` into `juniper_warp/examples/subscription.rs` - move `examples/actix_subscriptions` into `juniper_actix/examples/subscription.rs` - move `examples/basic_subscriptions` into `juniper_subscriptions/examples/basic.rs` - bump up MSRV of `juniper_actix` crate to 1.68
25 lines
1.2 KiB
TOML
25 lines
1.2 KiB
TOML
[package]
|
|
name = "juniper_graphql_transport_ws"
|
|
version = "0.4.0-dev"
|
|
edition = "2021"
|
|
rust-version = "1.65"
|
|
description = "`graphql-transport-ws` GraphQL over WebSocket Protocol implementation for `juniper` crate."
|
|
license = "BSD-2-Clause"
|
|
authors = ["Christopher Brown <ccbrown112@gmail.com>"]
|
|
documentation = "https://docs.rs/juniper_graphql_transport_ws"
|
|
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_graphql_transport_ws"
|
|
repository = "https://github.com/graphql-rust/juniper"
|
|
readme = "README.md"
|
|
categories = ["asynchronous", "web-programming", "web-programming::http-server"]
|
|
keywords = ["apollo", "graphql", "graphql-transport-ws", "subscription", "websocket"]
|
|
exclude = ["/release.toml"]
|
|
|
|
[dependencies]
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
|
|
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws" }
|
|
juniper_subscriptions = { version = "0.17.0-dev", path = "../juniper_subscriptions" }
|
|
serde = { version = "1.0.122", features = ["derive"], default-features = false }
|
|
tokio = { version = "1.0", features = ["macros", "rt", "time"], default-features = false }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.18"
|