forked from async-raft/async-raft
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 987 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 987 Bytes
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
[package]
name = "actix-raft"
version = "0.3.0"
edition = "2018"
authors = ["Anthony Dodd <Dodd.AnthonyJosiah@gmail.com>"]
categories = ["algorithms", "asynchronous", "data-structures"]
description = "An implementation of the Raft distributed consensus protocol using the Actix actor framework."
documentation = "https://docs.rs/actix-raft"
homepage = "https://github.com/railgun-rs/actix-raft"
keywords = ["raft", "consensus", "data-storage"]
license = "MIT/Apache-2.0"
repository = "https://github.com/railgun-rs/actix-raft"
readme = "README.md"
[dependencies]
actix = "0.8"
bytes = "0.4"
futures = "0.1"
log = "0.4"
rand = "0.6"
serde = { version="1", features=["derive"] }
tokio-timer = "0.2"
[dev-dependencies]
async-log = "1"
env_logger = "0.6"
rmp = "0.8"
rmp-serde = "0.13"
tempfile = "3"
[features]
docinclude = [] # Used only for activating `doc(include="...")` on nightly.
[package.metadata.docs.rs]
features = ["docinclude"] # Activate `docinclude` during docs.rs build.