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."
This commit is contained in:
Christian Legnitto 2018-12-12 19:20:23 -07:00
parent 6bc7b53ec6
commit 4c92b45e57

View file

@ -1,7 +1,8 @@
[workspace]
# Order is important as this is the order the crates will be released.
members = [
"juniper",
"juniper_codegen",
"juniper",
"juniper_tests",
"juniper_hyper",
"juniper_iron",