forked from LiangrunDa/StorgataDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (28 loc) · 805 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
[package]
name = "storgata-db"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bitcask-engine-rs = "0.1.0"
raft-lite = "0.2.6"
clap = { version = "4.2.5", features = ["derive", "env"] }
thiserror = "1.0.40"
anyhow = "1.0.71"
tokio = { version = "1.28.0", features = ["full"] }
async-recursion = "1.0.5"
uuid = { version = "1.6.1", features = [
"v4",
"fast-rng",
"macro-diagnostics",
]}
serde = { version = "1.0", features = ["derive"] }
bincode = "1.3.3"
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-appender = "0.2.3"
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = [
"registry",
"env-filter",
] }