From f5558cfb4f5c6777ac114105bcca28fbd4c4dbff Mon Sep 17 00:00:00 2001 From: Gavrie Philipson Date: Thu, 12 Sep 2019 14:14:32 +0300 Subject: [PATCH] Use experimental api feature for RediSearch support --- Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c7bfcf3..82f9e29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,11 @@ libc = "0.2" time = "0.1" enum-primitive-derive = "0.1.2" num-traits = "0.2.8" -redismodule = { git = "https://github.com/RedisLabsModules/redismodule-rs.git", branch = "master" } + +[dependencies.redismodule] +git = "https://github.com/redislabsmodules/redismodule-rs.git" +branch = "master" +features = ["experimental-api"] # Required by RediSearch [build-dependencies] bindgen = "0.51"