-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (39 loc) · 896 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
[package]
name = "kvs"
version = "0.4.0"
authors = ["xxchan <[email protected]>"]
description = "A key-value store"
edition = "2018"
[dependencies]
clap = "~2.33.0"
failure = "0.1.6"
serde = {version ="1.0", features =["derive"]}
serde_json = "1.0"
sled = "0.30.3"
log = "0.4.8"
env_logger = "0.7.1"
tempfile = "3.0.7"
crossbeam = "0.7.1"
num_cpus = "1.12.0"
rayon = "1.3.0"
chashmap = "2.2.2"
[dev-dependencies]
assert_cmd = "0.11"
criterion = "0.3.1"
crossbeam-utils = "0.6.5"
predicates = "1.0.0"
rand = "0.6.5"
tempfile = "3.0.7"
walkdir = "2.2.7"
panic-control = "0.1.4"
#[[bench]]
#name = "engine_bench"
#harness = false
# THIS BENCH IS GIVEN UP
#[[bench]]
#name = "pool_bench"
#harness = false
# The development profile, used for `cargo build`
[profile.dev]
opt-level = 0 # Controls the --opt-level the compiler builds with
debug = true # Controls whether the compiler passes `-g`