juniper/Cargo.toml

22 lines
476 B
TOML
Raw Normal View History

[workspace]
# Order is important as this is the order the crates will be released.
members = [
2019-08-21 05:07:30 -05:00
"juniper_benchmarks",
"juniper_codegen",
"juniper",
"integration_tests/juniper_tests",
2019-08-18 14:36:44 -05:00
"integration_tests/async_await",
"juniper_hyper",
"juniper_iron",
"juniper_rocket",
"juniper_subscriptions",
"juniper_warp",
]
exclude = [
"docs/book/tests",
2019-08-19 15:40:22 -05:00
"examples/warp_async",
"examples/warp_subscriptions",
# TODO enable async tests
"juniper_rocket_async",
]