From 4c92b45e57a71e2d9101b72a8cb41f91e51b9ad2 Mon Sep 17 00:00:00 2001
From: Christian Legnitto <christian@legnitto.com>
Date: Wed, 12 Dec 2018 19:20:23 -0700
Subject: [PATCH] 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."
---
 Cargo.toml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index 60cc11b7..52218edf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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",