-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
43 lines (34 loc) · 866 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
38
39
40
41
42
43
[package]
name = "almost-raft"
version = "0.3.0"
authors = ["Md Sarowar Alam <sarowar.cse@gmail.com>"]
edition = "2018"
license = "MIT"
readme = "README.md"
repository = "https://github.com/eipi1/almost-raft"
description = """
An implementation of Raft leader election
"""
categories = ["algorithms", "network-programming"]
keywords = ["cluster", "distributed-system", "raft", "consensus"]
[dependencies.rand]
version = "0.8"
[dependencies.tokio]
version = "1.9"
features = ["time", "sync", "test-util", "macros", "rt"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.futures-util]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.log]
version = "0.4"
[dev-dependencies.tracing-subscriber]
version = "0.2"
[dev-dependencies.uuid]
version = "0.8"
features = ["v4"]