93deb2862a
* Make juniper_rocket_async replace juniper_rocket Now that rocket v0.5 is async and in rc, merge the two juniper projects. Fixes https://github.com/graphql-rust/juniper/issues/947. * Remove println
24 lines
569 B
TOML
24 lines
569 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_subscriptions",
|
|
"juniper_graphql_ws",
|
|
"juniper_warp",
|
|
"juniper_actix",
|
|
]
|
|
exclude = [
|
|
"docs/book/tests",
|
|
]
|