-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (48 loc) · 1007 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
authors = ["QingGo <[email protected]>"]
description = "A key-value store"
edition = "2021"
name = "kvs"
version = "0.1.0"
[lib]
doctest = false
test = false
[[bin]]
doctest = false
name = "kvs"
test = false
[features]
[dependencies]
anyhow = "1.0"
bson = "2.0"
clap = {version = "3.0.0-rc.4", features = ["derive"]}
crossbeam-channel = "0.5.1"
lazy_static = "1.4.0"
log = "0.4.14"
num_cpus = "1.13.0"
rand = {version = "0.8.4", features = ["small_rng"]}
rayon = "1.5.1"
ron = "0.7.0"
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"
sled = "0.34.7"
slog = "2.7.0"
slog-async = "2.7.0"
slog-scope = "4.4.0"
slog-stdlog = "4.1.0"
slog-term = "2.8.0"
thiserror = "1.0.30"
[dev-dependencies]
assert_cmd = "0.11"
criterion = {version = "0.3", features = ["html_reports"]}
crossbeam = "0.8.1"
crossbeam-utils = "0.6.5"
ntest = "0.7.3"
panic-control = "0.1.4"
predicates = "1.0.0"
rand = "0.6.5"
tempfile = "3.0.7"
walkdir = "2.2.7"
[[bench]]
harness = false
name = "benchmark"