juniper/Cargo.toml
Mihai Dinculescu 8d7ba8295c
Impl subscriptions for juniper_actix (#716)
* Impl subscriptions for juniper_actix

* Add random_human example subscription

* Add actix_subscriptions example to CI

* fixup! Add random_human example subscription

* Migrate actix subscriptions to juniper_graphql_ws

* Simplify error handling

* Change unwrap to expect

* Close connection on server serialization error

Co-authored-by: Christian Legnitto <LegNeato@users.noreply.github.com>
2020-08-09 12:19:34 -10:00

25 lines
595 B
TOML

[workspace]
# Order is important as this is the order the crates will be released.
members = [
"juniper_benchmarks",
"juniper_codegen",
"juniper",
"examples/basic_subscriptions",
"examples/warp_async",
"examples/warp_subscriptions",
"examples/actix_subscriptions",
"integration_tests/juniper_tests",
"integration_tests/async_await",
"integration_tests/codegen_fail",
"juniper_hyper",
"juniper_iron",
"juniper_rocket",
"juniper_rocket_async",
"juniper_subscriptions",
"juniper_graphql_ws",
"juniper_warp",
"juniper_actix",
]
exclude = [
"docs/book/tests",
]