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 12:07:30 +02:00
"juniper_benchmarks",
"juniper_codegen",
"juniper",
2020-07-20 21:38:22 -10:00
"examples/basic_subscriptions",
"examples/warp_async",
"examples/warp_subscriptions",
"integration_tests/juniper_tests",
2019-08-18 21:36:44 +02: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 03:21:02 -03:00
"juniper_actix",
]
exclude = [
"docs/book/tests",
]