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:
parent
4a91d9d205
commit
bc9183784f
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue