-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 903 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
[package]
name = "consensus"
version = "6.7.4"
authors = ["Rivtower Technologies <contact@rivtower.com>"]
edition = "2021"
[dependencies]
clap = { version = "4.5", features = ["cargo"] }
tonic = "0.12"
toml = "0.8"
rand = "0.8"
# `release_max_level_trace` enables configuring log level at runtime.
slog = { version = "2.7", features = ["release_max_level_trace"] }
sloggers = "2.2"
log = "0.4"
hex = "0.4"
raft = { git = "https://github.com/JLerxky/raft-rs", default-features = false, features = ["prost-codec"] }
prost = "0.13"
tokio = { version = "1.41", features = ["fs", "io-util", "rt", "macros"] }
serde = "1.0"
bytes = "1.8"
tower = "0.5"
flume = "0.11"
cloud-util = { package = "cloud-util", git = "https://github.com/cita-cloud/cloud-common-rs" }
cita_cloud_proto = { package = "cita_cloud_proto", git = "https://github.com/cita-cloud/cloud-common-rs" }
[dev-dependencies]
tempfile = "3.13"