-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (42 loc) · 884 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
[package]
name = "kvs"
version = "0.1.0"
authors = ["Luffbee <luffbee@outlook.com>"]
edition = "2018"
description = "A key-value server implemented by rust."
[dev-dependencies]
assert_cmd = "0.11.1"
criterion = "0.2.11"
crossbeam-utils = "0.6.5"
predicates = "1.0.1"
rand = "0.6.5"
tempfile = "3.0.8"
walkdir = "2.2.8"
[[bench]]
name = "engine"
harness = false
[[bench]]
name = "thread_pool"
harness = false
[dependencies]
failure = "0.1.5"
failure_derive = "0.1.5"
bson = "0.13.0"
serde_derive = "1.0.94"
serde = "1.0.94"
ron = "0.5.1"
serde_json = "1.0.39"
slog = { version = "2.4.1", features = ["max_level_warn"] }
slog-term = "2.4.0"
slog-async = "2.3.0"
slog-stdlog = "3.0.2"
structopt = "0.2.18"
sled = "0.24.1"
crossbeam = "0.7.1"
crossbeam-channel = "0.3.8"
num_cpus = "1.10.1"
rayon = "1.1.0"
chashmap = "2.2.2"
tokio = "0.1.21"
bytes = "0.4.12"
panic-control = "0.1.4"