4c92b45e57
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."
11 lines
225 B
TOML
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",
|
|
]
|