-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (46 loc) · 1.06 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
[package]
name = "radis"
version = "0.1.0"
edition = "2021"
default-run = "radis"
[[bin]]
name = "radis"
path = "src/bin/radis/main.rs"
[[bin]]
name = "mkconf"
path = "src/bin/mkconf/main.rs"
[workspace]
members = [
"crates/persister",
"crates/raft",
"crates/timer",
]
[workspace.dependencies]
timer = {path = "crates/timer"}
raft = {path = "crates/raft"}
persister = {path = "crates/persister"}
[dependencies]
timer.workspace = true
raft.workspace = true
persister.workspace = true
anyhow = "1.0.86"
bytes = {version = "1.6.1", features = [
"serde",
]}
clap = {version = "4.5.8", features = [
"derive",
]}
log = {version = "0.4.22", features = [
"kv",
]}
mini-redis = "0.4.1"
serde = {version = "1.0.203", features = [
"derive",
]}
serde_json = "1.0.120"
structured-logger = "1.0.3"
tokio = {version = "1.38.0", features = [
"rt-multi-thread",
"macros",
]}
toml = "0.8.14"