Update 'redis' to '0.9'.

Closes #743.
This commit is contained in:
Sergio Benitez 2018-08-18 16:50:55 -07:00
parent 46da03c3c3
commit 9966a07c58
1 changed files with 4 additions and 5 deletions

View File

@ -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 }