Update 'uuid' dependency to '0.6'.

Resolves #565.
This commit is contained in:
Sergio Benitez 2018-02-21 00:57:39 -08:00
parent 63ebe7d06a
commit b76a1ef8b9
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ rocket = { version = "0.4.0-dev", path = "../lib/" }
log = "0.4"
# UUID dependencies.
uuid = { version = "^0.5", optional = true }
uuid = { version = ">= 0.5, <= 0.6", optional = true }
# Serialization and templating dependencies.
serde = { version = "1.0", optional = true }

View File

@ -6,7 +6,7 @@ workspace = "../../"
[dependencies]
rocket = { path = "../../lib" }
rocket_codegen = { path = "../../codegen" }
uuid = "^0.5"
uuid = ">= 0.5, <= 0.6"
lazy_static = "1.0"
[dependencies.rocket_contrib]