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
17 lines
381 B
TOML
17 lines
381 B
TOML
[workspace]
|
|
resolver = "1" # unifying Cargo features asap for Book tests
|
|
members = [
|
|
"benches",
|
|
"juniper_codegen",
|
|
"juniper",
|
|
"juniper_hyper",
|
|
"juniper_iron",
|
|
"juniper_rocket",
|
|
"juniper_subscriptions",
|
|
"juniper_graphql_transport_ws",
|
|
"juniper_graphql_ws",
|
|
"juniper_warp",
|
|
"juniper_actix",
|
|
"tests/codegen",
|
|
"tests/integration",
|
|
]
|