forked from rust-rocksdb/rust-rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
47 lines (43 loc) · 1.21 KB
/
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
39
40
41
42
43
44
45
46
47
[package]
name = "speedb"
description = "Rust wrapper for Speedb"
version = "0.0.3"
edition = "2018"
rust-version = "1.63"
authors = ["Tyler Neely <[email protected]>", "David Greenberg <[email protected]>"]
repository = "https://github.com/speedb-io/rust-speedb"
license = "Apache-2.0"
categories = [ "database" ]
keywords = ["database", "embedded", "LSM-tree", "persistence"]
homepage = "https://github.com/speedb-io/rust-speedb"
exclude = [
".gitignore",
".travis.yml",
"deploy.sh",
"test/**/*",
]
[workspace]
members = ["libspeedb-sys"]
[features]
default = ["snappy", "lz4", "zstd", "zlib", "bzip2"]
jemalloc = ["libspeedb-sys/jemalloc"]
io-uring = ["libspeedb-sys/io-uring"]
valgrind = []
snappy = ["libspeedb-sys/snappy"]
lz4 = ["libspeedb-sys/lz4"]
zstd = ["libspeedb-sys/zstd"]
zlib = ["libspeedb-sys/zlib"]
bzip2 = ["libspeedb-sys/bzip2"]
rtti = ["libspeedb-sys/rtti"]
multi-threaded-cf = []
serde1 = ["serde"]
[dependencies]
libc = "0.2"
libspeedb-sys = { path = "libspeedb-sys", version = "0.0.3" }
serde = { version = "1", features = [ "derive" ], optional = true }
[dev-dependencies]
trybuild = "1.0"
tempfile = "3.1"
pretty_assertions = "1.0"
bincode = "1.3"
serde = { version = "1", features = [ "derive" ] }