From 9966a07c58a94e3e35ce4a4a15e0f3b36b5ac99f Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sat, 18 Aug 2018 16:50:55 -0700 Subject: [PATCH] Update 'redis' to '0.9'. Closes #743. --- contrib/lib/Cargo.toml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/contrib/lib/Cargo.toml b/contrib/lib/Cargo.toml index 9cc8a8bb..439e435a 100644 --- a/contrib/lib/Cargo.toml +++ b/contrib/lib/Cargo.toml @@ -17,6 +17,8 @@ msgpack = ["serde", "rmp-serde"] tera_templates = ["tera", "templates"] handlebars_templates = ["handlebars", "templates"] static_files = [] +# Internal use only. +templates = ["serde", "serde_json", "glob"] # Database pooling features. # Iternal use only. @@ -32,9 +34,6 @@ sqlite_pool = ["database_pool", "rusqlite", "r2d2_sqlite"] cypher_pool = ["database_pool", "rusted_cypher", "r2d2_cypher"] redis_pool = ["database_pool", "redis", "r2d2_redis"] -# Internal use only. -templates = ["serde", "serde_json", "glob"] - [dependencies] rocket = { version = "0.4.0-dev", path = "../../core/lib/" } log = "0.4" @@ -63,8 +62,8 @@ rusqlite = { version = "0.13.0", optional = true } r2d2_sqlite = { version = "0.5", optional = true } rusted_cypher = { version = "1", optional = true } r2d2_cypher = { version = "0.4", optional = true } -redis = { version = "0.8", optional = true } -r2d2_redis = { version = "0.7", optional = true } +redis = { version = "0.9", optional = true } +r2d2_redis = { version = "0.8", optional = true } # Contrib codegen dependencies rocket_contrib_codegen = { path = "../codegen", optional = true }