-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
32 lines (27 loc) · 848 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "redisearch_api"
version = "0.5.0"
authors = ["Gavrie Philipson <gavrie@redislabs.com>", "Guy Korland <guy.korland@redislabs.com>"]
edition = "2018"
description = "Rust RediSearch API binding"
license = "BSD-3-Clause"
repository = "https://github.com/RediSearch/redisearch-api-rs"
readme = "README.md"
[[example]]
name = "hello_redisearch"
crate-type = ["cdylib"]
[dependencies]
redis-module = { version="0.11", features = ["experimental-api"]}
bitflags = "1.1"
libc = "0.2"
time = "0.1"
enum-primitive-derive = "0.1.2"
num-traits = "0.2.8"
[build-dependencies]
bindgen = "0.54"
cmake = "0.1"
[features]
# Workaround to allow cfg(feature = "test") in redismodue-rs dependencies:
# https://github.com/RedisLabsModules/redismodule-rs/pull/68
# This requires running the tests with `--features test`
test = ["redis-module/test"]