-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (35 loc) · 835 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
[package]
name = "minkv"
version = "0.0.1"
edition = "2021"
[dependencies]
chrono = "0.4.38"
crc32fast = "1.4.2"
env_logger = "0.11.5"
log = "0.4.22"
serde = { version = "1.0.204", features = ["derive"] }
# dashmap = "5.0"
fs4 = { version = "0.9", features = ["sync"] }
rand = "0.8.5"
regex = "1.10.6"
toml = "0.8.19"
anyhow = "1.0.86"
tempfile = "3.12.0"
clap = { version = "4.5.10", features = ["derive"] }
redis-protocol = { version = "5.0.1", features = ["std", "codec"] }
fs2 = "0.4.3"
tokio = { version = "1.39.3", features = [
"macros",
"rt-multi-thread",
"tracing",
"signal"
] }
tonic = "0.12.1"
prost = "0.13.1"
tonic-reflection = "0.12.1"
console-subscriber = "0.4.0"
tracing = "0.1.40"
[build-dependencies]
anyhow = "1.0.86"
vergen-git2 = "1.0.0"
tonic-build = { version = "0.12.1", features = ["prost"] }