juniper/Cargo.toml
Christian Legnitto 4c92b45e57 Change the order of crates in the workspace
This is needed when we use `carg-make` for releases. From
https://github.com/sagiegurari/cargo-make#usage-workspace-support:

"The order of the members is defined by the member attribute in the workspace Cargo.toml."
2018-12-12 19:20:23 -07:00

11 lines
225 B
TOML

[workspace]
# Order is important as this is the order the crates will be released.
members = [
"juniper_codegen",
"juniper",
"juniper_tests",
"juniper_hyper",
"juniper_iron",
"juniper_rocket",
"juniper_warp",
]