Update 'uuid' dependency to '0.6'.

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

View File

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

View File

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