-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
46 lines (38 loc) · 877 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
[package]
name = "topazdb"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "*"
bytes = "*"
crossbeam = { git = "https://github.com/Tianion/crossbeam.git", branch = "feat/skiplist"}
crossbeam-channel = "*"
parking_lot = "*"
ouroboros = "*"
moka = "*"
log = "*"
snap = "*"
lz4 = "*"
libc = "*"
# rayon thread pool doesn't support shutting down
# rayon = "*"
yatp = {git = "https://github.com/tikv/yatp"}
crc32fast = "*"
[dependencies.xxhash-rust]
version = "0.8.5"
features = ["xxh3", "const_xxh3"]
[dev-dependencies]
tempfile = "*"
criterion = { version = "0.4.0", features = ["html_reports"] }
[[bench]]
name = "sstable_iter_read"
harness = false
[[bench]]
name = "write"
harness = false
[[bench]]
name = "disk_read"
harness = false
[profile.bench]
debug = true