forked from tikv/agatedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (44 loc) · 823 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
47
48
49
50
51
[package]
name = "agatedb"
version = "0.1.0"
authors = ["Jay Lee <[email protected]>"]
edition = "2018"
[dependencies]
bytes = "1.0"
crc = "1.8"
crossbeam-channel = "0.5"
enum_dispatch = "0.3"
farmhash = "1.1"
log = "0.4.17"
memmap2 = "0.3"
parking_lot = "0.11"
prost = "0.8"
proto = { path = "proto" }
rand = "0.7"
skiplist = { path = "skiplist" }
thiserror = "1.0"
[dev-dependencies]
criterion = "0.3"
tempfile = "3"
[target.'cfg(not(target_env = "msvc"))'.dev-dependencies]
tikv-jemallocator = "0.4.0"
[workspace]
members = [
"proto",
"skiplist",
]
[[bench]]
name = "bench_common"
harness = false
[[bench]]
name = "bench_table"
harness = false
[profile.bench]
opt-level = 3
debug = false
codegen-units = 1
lto = 'thin'
incremental = false
debug-assertions = false
overflow-checks = false
rpath = false