juniper/Cargo.toml
Chris 84c9720b53
GraphQL-WS crate and Warp subscriptions update (#721)
* update pre-existing juniper_warp::subscriptions

* initial draft

* finish up, update example

* polish + timing test

* fix pre-existing bug

* rebase updates

* address comments

* add release.toml

* makefile and initial changelog

* add new Cargo.toml to juniper/release.toml
2020-07-28 22:23:44 -10:00

24 lines
561 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",
"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",
]