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.
This commit is contained in:
James Harton 2019-11-22 11:35:09 +13:00 committed by Christian Legnitto
parent 4a91d9d205
commit bc9183784f

View file

@ -43,7 +43,7 @@ serde = { version = "1.0.8" }
serde_derive = { version = "1.0.2" }
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"