We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d16c61c commit b433872Copy full SHA for b433872
Cargo.toml
@@ -12,6 +12,7 @@ readme = "README.md"
12
name = "hello_redisearch"
13
crate-type = ["cdylib"]
14
15
+
16
[dependencies]
17
redis-module = { version="0.9.0", features = ["experimental-api"]}
18
bitflags = "1.1"
@@ -24,3 +25,8 @@ num-traits = "0.2.8"
24
25
bindgen = "0.51"
26
cmake = "0.1"
27
28
+[features]
29
+# Workaround to allow cfg(feature = "test") in redismodue-rs dependencies:
30
+# https://github.com/RedisLabsModules/redismodule-rs/pull/68
31
+# This requires running the tests with `--features test`
32
+test = ["redis-module/test"]
0 commit comments