-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (48 loc) · 1.1 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
[package]
name = "kvs"
version = "0.1.0"
authors = ["Cheng <lichchchn@gmail.com>"]
edition = "2018"
description = "A key-value store"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.32.0"
structopt = "0.3"
thiserror = "1.0"
log = "0.4"
env_logger = "0.8.2"
sled = "0.34.6"
dyn-clone = "1.0.3"
crossbeam = "0.8.0"
num_cpus = "1.13.0"
rayon = "1.5.0"
tokio = { version = "1.0", features = ["full"] }
futures = "0"
tonic = {version="0.4", features = ["transport", "tls"]}
prost = "0.7"
futures-core = "0.3"
futures-util = "0.3"
async-stream = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.7"
futures-timer = "3.0.2"
tokio-stream = "0.1.4"
lazy_static = "1.4.0"
chrono = "0.4.19"
[dev-dependencies]
assert_cmd = "0.11"
criterion = "0.3.0"
crossbeam-utils = "0.6.5"
predicates = "1.0.0"
tempfile = "3.0.7"
walkdir = "2.2.7"
panic-control = "0.1.4"
[build-dependencies]
tonic-build = { version = "0.4", features = ["prost"] }
[[bench]]
name = "engine"
harness = false
[[bench]]
name = "thread_pool"
harness = false