-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 718 Bytes
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
[package]
name = "kvs"
version = "0.3.0"
authors = ["Pu Ruokun <hughpu@hotmail.com>"]
description = "A key-value store for exersise"
edition = "2021"
[dependencies]
clap = { version = "4.3", features = ["derive"] }
failure = "0.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sled = "0.34.7"
slog = "2.7.0"
slog-term = "2.9.0"
crossbeam-skiplist = "0.1"
num_cpus = "1.14.0"
crossbeam = "0.8"
rayon = "1.8"
[dev-dependencies]
crossbeam-utils = "0.8"
assert_cmd = "2.0"
predicates = "3.0"
tempfile = "3.6"
walkdir = "2.3"
criterion = "0.5.1"
rand = { version = "0.8.5", features = ["small_rng"] }
rand_chacha = "0.3.1"
panic-control = "0.1.4"
[[bench]]
name = "kvs_benchmark"
harness = false