From f8c36f5c67041905e8aad8efe817f0a354c27d01 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sun, 22 Jul 2018 02:33:05 -0700 Subject: [PATCH] Update 'diesel', 'parking_lot', and 'rand' dependencies in 'todo' example. --- examples/todo/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/todo/Cargo.toml b/examples/todo/Cargo.toml index 687535aa..2565f0e7 100644 --- a/examples/todo/Cargo.toml +++ b/examples/todo/Cargo.toml @@ -10,11 +10,11 @@ rocket_codegen = { path = "../../core/codegen" } serde = "1.0" serde_json = "1.0" serde_derive = "1.0" -diesel = { version = "<= 1.2", features = ["sqlite", "r2d2"] } +diesel = { version = "1.3", features = ["sqlite", "r2d2"] } [dev-dependencies] -parking_lot = {version = "0.5", features = ["nightly"]} -rand = "0.4" +parking_lot = { version = "0.6", features = ["nightly"] } +rand = "0.5" [dependencies.rocket_contrib] path = "../../contrib/lib"