forked from rust-rocksdb/rust-rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 157
/
Cargo.toml
38 lines (34 loc) · 1001 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
33
34
35
36
37
38
[package]
name = "rocksdb"
description = "A Rust wrapper for Facebook's RocksDB embeddable database."
version = "0.3.0"
authors = ["Tyler Neely <[email protected]>", "David Greenberg <[email protected]>"]
license = "Apache-2.0"
keywords = ["database", "embedded", "LSM-tree", "persistence"]
homepage = "https://github.com/spacejam/rust-rocksdb"
exclude = [
".gitignore",
".travis.yml",
"deploy.sh",
"tests/**/*",
"benches/**/*",
]
[features]
default = []
encryption = ["librocksdb_sys/encryption"]
jemalloc = ["librocksdb_sys/jemalloc"]
portable = ["librocksdb_sys/portable"]
sse = ["librocksdb_sys/sse"]
static_libcpp = ["librocksdb_sys/static_libcpp"]
valgrind = []
[dependencies]
libc = "0.2.11"
librocksdb_sys = { path = "librocksdb_sys" }
[dev-dependencies]
crc = "1.8"
lazy_static = "1.4.0"
rand = "0.7"
tempfile = "3.1"
[patch.crates-io]
# Remove this when a new version is release. We need to solve rust-lang/cmake-rs#143.
cmake = { git = "https://github.com/rust-lang/cmake-rs" }