forked from cberner/redb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
86 lines (70 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "redb"
description = "Rust Embedded DataBase"
homepage = "https://www.redb.org"
repository = "https://github.com/cberner/redb"
readme = "README.md"
license = "MIT OR Apache-2.0"
version = "1.5.0"
edition = "2021"
rust-version = "1.66"
authors = ["Christopher Berner <[email protected]>"]
exclude = ["fuzz/"]
[lib]
crate-type = ["cdylib", "rlib"]
[build-dependencies]
pyo3-build-config = { version = "0.20.0", optional = true }
[dependencies]
log = {version = "0.4.17", optional = true }
pyo3 = {version = "0.20.0", features=["extension-module", "abi3-py37"], optional = true }
[target.'cfg(unix)'.dependencies]
libc = "0.2.104"
# Common test/bench dependencies
[dev-dependencies]
rand = "0.8"
tempfile = "3.5.0"
# for backwards compatibility testing - pin at 1.0.0
redb1 = { version = "=1.0.0", package = "redb" }
# Just benchmarking dependencies
[target.'cfg(not(target_os = "wasi"))'.dev-dependencies]
ctrlc = "3.2.3"
fastrand = "2.0.0"
lmdb-rkv = "0.14.0"
sanakirja = "=1.3.3"
sanakirja-core = "=1.3.3"
sled = "0.34.7"
rocksdb = "0.21.0"
libc = "0.2.99"
comfy-table = "7.0.1"
[target.'cfg(target_os = "linux")'.dev-dependencies]
io-uring = "0.6.2"
[features]
# This feature is still experimental, and is not considered stable
python = [ "pyo3", "pyo3-build-config" ]
# Enables log messages
logging = ["log"]
# Enable cache hit metrics
cache_metrics = []
[profile.bench]
debug = true
[[bench]]
name = "atomics_benchmark"
harness = false
[[bench]]
name = "multithreaded_insert_benchmark"
harness = false
[[bench]]
name = "userspace_cache_benchmark"
harness = false
[[bench]]
name = "lmdb_benchmark"
harness = false
[[bench]]
name = "large_values_benchmark"
harness = false
[[bench]]
name = "int_benchmark"
harness = false
[[bench]]
name = "syscall_benchmark"
harness = false