forked from zaidoon1/rust-rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (60 loc) · 1.83 KB
/
Cargo.toml
File metadata and controls
64 lines (60 loc) · 1.83 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "rust-rocksdb"
description = "Rust wrapper for Facebook's RocksDB embeddable database"
version = "0.44.2"
edition = "2021"
rust-version = "1.81.0"
authors = [
"Tyler Neely <t@jujit.su>",
"David Greenberg <dsg123456789@gmail.com>",
]
repository = "https://github.com/zaidoon1/rust-rocksdb"
license = "Apache-2.0"
categories = ["database"]
keywords = ["database", "embedded", "LSM-tree", "persistence"]
homepage = "https://github.com/zaidoon1/rust-rocksdb"
exclude = [".gitignore", ".travis.yml", "deploy.sh", "test/**/*"]
[workspace]
members = ["librocksdb-sys"]
[features]
default = [
"bindgen-runtime",
"bzip2",
"io-uring",
"jemalloc",
"lz4",
"multi-threaded-cf",
"serde1",
"zstd",
"zstd-static-linking-only",
]
jemalloc = ["rust-librocksdb-sys/jemalloc"]
io-uring = ["rust-librocksdb-sys/io-uring"]
io-uring-static = ["rust-librocksdb-sys/io-uring-static"]
numa = ["rust-librocksdb-sys/numa"]
valgrind = []
snappy = ["rust-librocksdb-sys/snappy"]
lz4 = ["rust-librocksdb-sys/lz4"]
zstd = ["rust-librocksdb-sys/zstd"]
zlib = ["rust-librocksdb-sys/zlib"]
bzip2 = ["rust-librocksdb-sys/bzip2"]
rtti = ["rust-librocksdb-sys/rtti"]
mt_static = ["rust-librocksdb-sys/mt_static"]
multi-threaded-cf = []
serde1 = ["serde"]
malloc-usable-size = ["rust-librocksdb-sys/malloc-usable-size"]
zstd-static-linking-only = ["rust-librocksdb-sys/zstd-static-linking-only"]
bindgen-runtime = ["rust-librocksdb-sys/bindgen-runtime"]
bindgen-static = ["rust-librocksdb-sys/bindgen-static"]
lto = ["rust-librocksdb-sys/lto"]
[dependencies]
libc = "0.2"
parking_lot = { version = "0.12" }
rust-librocksdb-sys = { path = "librocksdb-sys", version = "0.40.0" }
serde = { version = "1", features = ["derive"], optional = true }
[dev-dependencies]
bincode = "1"
pretty_assertions = "1"
serde = { version = "1", features = ["derive"] }
tempfile = "3"
trybuild = "1"