juniper/Cargo.toml

24 lines
537 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",
2020-07-21 02:38:22 -05:00
"examples/basic_subscriptions",
"examples/warp_async",
"examples/warp_subscriptions",
"integration_tests/juniper_tests",
2019-08-18 14:36:44 -05:00
"integration_tests/async_await",
"integration_tests/codegen_fail",
"juniper_hyper",
"juniper_iron",
"juniper_rocket",
"juniper_rocket_async",
"juniper_subscriptions",
"juniper_warp",
2020-04-21 01:21:02 -05:00
"juniper_actix",
]
exclude = [
"docs/book/tests",
]