-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (54 loc) · 1.63 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
[package]
name = "kvbench"
version = "0.2.1"
authors = ["Chen Chen <[email protected]>"]
description = "A key-value store benchmark framework with customizable workloads"
edition = "2021"
readme = "README.md"
repository = "https://www.github.com/nerdroychan/kvbench"
license = "GPL-3.0"
keywords = ["benchmark", "key-value"]
categories = ["concurrency", "development-tools::profiling", "development-tools::testing"]
exclude = ["examples"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
ahash = "0.8.11"
bincode = "1.3.3"
chashmap = { version = "2.2.2", optional = true }
clap = { version = "4.5.21", features = ["derive"] }
contrie = { version = "0.1.4", optional = true }
core_affinity = "0.8.1"
ctrlc = "3.4.5"
dashmap = { version = "6.1.0", features = ["inline"], optional = true }
env_logger = "0.11.5"
figment = { version = "0.10.19", features = ["toml", "env"] }
flurry = { version = "0.5.2", optional = true }
hashbrown = "0.14.5"
hdrhistogram = "7.5.4"
inventory = "0.3.15"
log = "0.4.22"
mio = { version = "1.0.2", features = ["net", "os-poll"] }
papaya = { version = "0.1.4", optional = true }
parking_lot = "0.12.3"
quanta = "0.12.3"
rand = "0.8.5"
rocksdb = { version = "0.22.0", optional = true }
scc = { version = "2.2.5", optional = true }
serde = { version = "1.0.215", features = ["derive"] }
toml = "0.8.19"
zipf = "7.0.1"
[dev-dependencies]
tempfile = "3.14.0"
[features]
chashmap = ["dep:chashmap"]
contrie = ["dep:contrie"]
dashmap = ["dep:dashmap"]
flurry = ["dep:flurry"]
papaya = ["dep:papaya"]
rocksdb = ["dep:rocksdb"]
scc = ["dep:scc"]
[profile.release-lto]
inherits = "release"
lto = true