-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
37 lines (33 loc) · 843 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
[package]
name = "unifier"
version = "0.1.0"
authors = ["raptazure <[email protected]>"]
description = "A multi-threaded, persistent key/value store server and client with networking over a custom protocol."
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.1"
structopt = "0.3"
tempfile = "3.1.0"
walkdir = "2.3.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
failure = "0.1.8 "
log = "0.4.11"
sled = "0.34.6"
env_logger = "0.8.2"
crossbeam = "0.8.0"
rayon = "1.5.0"
num_cpus = "1.13.0"
[dev-dependencies]
assert_cmd = "1.0.2"
predicates = "1.0.0"
criterion = "0.3.3"
crossbeam-utils = "0.8.1"
rand = "0.5.1"
tempfile = "3.1.0"
walkdir = "2.3.1"
panic-control = "0.1.4"
[[bench]]
name = "engine_bench"
harness = false