-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
57 lines (49 loc) · 1.2 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
[package]
name = "bitcask"
version = "0.1.0"
authors = ["Vo Le Tung <[email protected]>"]
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "cli"
bench = false
[[bin]]
name = "svr"
bench = false
[lib]
bench = false
[dependencies]
anyhow = "1"
bincode = "1"
bytes = { version = "1", features = ["serde"] }
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
config = "0.13"
crossbeam = "0.8"
lru = "0.12"
memmap2 = "0.9"
num_cpus = "1"
parking_lot = "0.12"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
crossbeam-skiplist = "0.1.1"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
tracing = { version = "0.1", features = ["log"] }
tracing-bunyan-formatter = "0.3"
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["async_tokio"] }
pprof = { version = "0.13", features = ["criterion", "flamegraph"] }
proptest = "1"
rayon = "1"
sled = "0.34"
tempfile = "3"
[[bench]]
name = "connection"
harness = false
[[bench]]
name = "readwrite"
harness = false