forked from SpadeA-Tang/agatedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (65 loc) · 1.29 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "agatedb"
version = "0.1.0"
authors = ["Jay Lee <busyjaylee@gmail.com>"]
edition = "2018"
[features]
default = []
enable-rocksdb = ["rocksdb"]
[dependencies]
bytes = "1.0"
coarsetime = "0.1.22"
crc = "1.8"
crc32fast = "1.2"
crossbeam-channel = "0.5"
enum_dispatch = "0.3"
farmhash = "1.1"
getset = "0.1.2"
human_bytes = "0.4.2"
indexsort = "0.1.0"
lazy_static = "1.4.0"
log = "0.4.17"
memmap2 = "0.3"
parking_lot = "0.11"
prost = "0.8"
proto = { path = "proto" }
rand = "0.8.4"
rocksdb = { version = "0.15", optional = true }
skiplist = { path = "skiplist" }
tempdir = "0.3"
thiserror = "1.0"
walkdir = "2"
yatp = { git = "https://github.com/tikv/yatp.git", rev = "b793461ea4abd202798cda6e20e97a054103f2ad" }
indexing = "0.4.1"
[dev-dependencies]
criterion = "0.3"
tempfile = "3"
[target.'cfg(not(target_env = "msvc"))'.dev-dependencies]
tikv-jemallocator = "0.4.0"
[workspace]
members = [
"agate_bench",
"proto",
"skiplist"
]
[[bench]]
name = "bench_common"
harness = false
[[bench]]
name = "bench_table"
harness = false
[[bench]]
name = "bench_iterator"
harness = false
[[bench]]
name = "benches_agate_rocks"
harness = false
[profile.bench]
opt-level = 3
debug = false
codegen-units = 1
lto = 'thin'
incremental = false
debug-assertions = false
overflow-checks = false
rpath = false