juniper/Cargo.toml
Christoph Herzog 50605ee73e Duplicate juniper_rocket for async
This is required because rocket only supports futures on a git branch.
2019-11-15 21:52:22 +01:00

19 lines
416 B
TOML

[workspace]
# Order is important as this is the order the crates will be released.
members = [
"juniper_benchmarks",
"juniper_codegen",
"juniper",
"integration_tests/juniper_tests",
"integration_tests/async_await",
"juniper_hyper",
"juniper_iron",
"juniper_rocket",
"juniper_warp",
]
exclude = [
"docs/book/tests",
"examples/warp_async",
# TODO enable async tests
"juniper_rocket_async",
]