From 5d56c9f22165bb287e2cf2adea1915e7094fa2d4 Mon Sep 17 00:00:00 2001
From: James Harton <james@automat.nz>
Date: Fri, 22 Nov 2019 11:35:09 +1300
Subject: [PATCH] Loosen constraints on uuid version.

The `uuid` maintainers have started releasing in the `0.8` version train.  I've relaxed the version requirements on `juniper`'s dependencies to allow juniper users to specify a different version in their `Cargo.toml` and still have the integration work.
---
 juniper/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/juniper/Cargo.toml b/juniper/Cargo.toml
index 8a319168..6039ac7a 100644
--- a/juniper/Cargo.toml
+++ b/juniper/Cargo.toml
@@ -42,7 +42,7 @@ serde_derive = { version = "1.0.2" }
 chrono = { version = "0.4.0", optional = true }
 serde_json = { version="1.0.2", optional = true }
 url = { version = "2", optional = true }
-uuid = { version = "0.7", optional = true }
+uuid = { version = ">= 0.7, < 0.8", optional = true }
 
 [dev-dependencies]
 bencher = "0.1.2"