-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (46 loc) · 1.18 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
[package]
name = "kvs"
version = "0.1.0"
authors = ["Komal Sai <[email protected]>"]
description = "A key-value store"
edition = "2018"
[dev-dependencies]
assert_cmd = "0.11.0"
predicates = "1.0.0"
criterion = "0.3"
rand = "0.6.5"
tempfile = "3.0.7"
walkdir = "2.2.7"
crossbeam-utils = "0.6.5"
panic-control = "0.1.4"
[dependencies]
actix-web = "4.4.0"
bincode = "1.3.3"
byteorder = "1.5.0"
bytes = "1.5.0"
clap = { version = "4.4.6", features = ["derive", "env"] }
crossbeam = "0.8.2"
crossbeam-channel = "0.5.8"
failure = "0.1.8"
num_cpus = "1.16.0"
openraft = { git = "https://github.com/datafuselabs/openraft.git", version = "0.8.4", features = [
"serde",
] }
rayon = "1.8.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_bytes = "0.11.12"
serde_derive = "1.0.189"
serde_json = "1.0.107"
sled = "0.34.7"
slog = "2.7.0"
slog-async = "2.8.0"
slog-term = "2.9.0"
tokio = { version = "1.33.0", default-features = false, features = ["sync"] }
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
reqwest = { version = "0.11.9", features = ["json"] }
async-trait = "0.1.36"
crossbeam-skiplist = "0.1.1"
[[bench]]
name = "pool_bench"
harness = false