-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 967 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 = "tonic-raft"
version = "0.1.0"
authors = ["Ryan Geary <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
description = "A tonic-based implementation of the raft consensus algorithm for distributed applications"
homepage = "https://github.com/theryangeary/tonic-raft"
repository = "https://github.com/theryangeary/tonic-raft"
readme = "README.md"
keywords = ["raft", "distributed-systems", "consensus", "state-machine"]
categories = ["web-programming", "network-programming", "database-implementations", "concurrency"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.3"
bincode = "1.3"
chrono = "0.4"
futures = "0.3"
prost = "0.7"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
structopt = "0.3"
tokio = { version = "1", features = ["rt-multi-thread", "time"] }
tokio-stream = "0.1"
tonic = "0.4"
[build-dependencies]
tonic-build = "0.4"