-
Notifications
You must be signed in to change notification settings - Fork 449
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 891 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 891 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
36
37
38
39
40
[package]
name = "raft"
version = "0.4.0"
authors = ["The TiKV Project Developers"]
license = "Apache-2.0"
keywords = ["raft", "distributed-systems", "ha"]
repository = "https://github.com/pingcap/raft-rs"
readme = "README.md"
homepage = "https://github.com/pingcap/raft-rs"
documentation = "https://docs.rs/raft"
description = "The rust language implementation of Raft algorithm."
categories = ["algorithms", "database-implementations"]
[features]
default = []
failpoint = ["fail"]
[dependencies]
log = ">0.2"
protobuf = "2.0.4"
quick-error = "1.2.2"
rand = "0.5.4"
fxhash = "0.2.1"
fail = { version = "0.2", optional = true }
[dev-dependencies]
env_logger = "0.5"
criterion = ">0.2.4"
lazy_static = "1.0"
[[bench]]
name = "benches"
harness = false
[badges]
travis-ci = { repository = "pingcap/raft-rs" }
[[example]]
name = "single_mem_node"
path = "examples/single_mem_node/main.rs"