From 13061e9062c3eb8c20e35e2e53c67c319a148f68 Mon Sep 17 00:00:00 2001 From: Lance Carlson Date: Wed, 3 May 2017 12:03:25 -0400 Subject: [PATCH] Update uuid dependency to 0.5. --- contrib/Cargo.toml | 2 +- examples/uuid/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/Cargo.toml b/contrib/Cargo.toml index 426347b0..ed29af91 100644 --- a/contrib/Cargo.toml +++ b/contrib/Cargo.toml @@ -26,7 +26,7 @@ rocket = { version = "0.2.6", path = "../lib/" } log = "^0.3" # UUID dependencies. -uuid = { version = "^0.4", optional = true } +uuid = { version = "^0.5", optional = true } # Serialization and templating dependencies. serde = { version = "1.0", optional = true } diff --git a/examples/uuid/Cargo.toml b/examples/uuid/Cargo.toml index 28841e1e..9a557dbc 100644 --- a/examples/uuid/Cargo.toml +++ b/examples/uuid/Cargo.toml @@ -6,7 +6,7 @@ workspace = "../../" [dependencies] rocket = { path = "../../lib" } rocket_codegen = { path = "../../codegen" } -uuid = "^0.4" +uuid = "^0.5" lazy_static = "^0.2" [dependencies.rocket_contrib]