raft 0.4.1

The rust language implementation of Raft algorithm.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "raft"
version = "0.4.1"
authors = ["The TiKV Project Developers"]
build = "build.rs"
description = "The rust language implementation of Raft algorithm."
homepage = "https://github.com/pingcap/raft-rs"
documentation = "https://docs.rs/raft"
readme = "README.md"
keywords = ["raft", "distributed-systems", "ha"]
categories = ["algorithms", "database-implementations"]
license = "Apache-2.0"
repository = "https://github.com/pingcap/raft-rs"

[[example]]
name = "single_mem_node"
path = "examples/single_mem_node/main.rs"

[[bench]]
name = "benches"
harness = false
[dependencies.bytes]
version = "0.4.11"

[dependencies.fail]
version = "0.2"
optional = true

[dependencies.fxhash]
version = "0.2.1"

[dependencies.hashbrown]
version = "0.1"

[dependencies.lazy_static]
version = "1.3.0"

[dependencies.log]
version = ">0.2"

[dependencies.prost]
version = "0.5"

[dependencies.prost-derive]
version = "0.5"

[dependencies.protobuf]
version = "2"

[dependencies.quick-error]
version = "1.2.2"

[dependencies.rand]
version = "0.5.4"
[dev-dependencies.criterion]
version = ">0.2.4"

[dev-dependencies.env_logger]
version = "0.5"

[dev-dependencies.lazy_static]
version = "1.0"

[dev-dependencies.regex]
version = "1.1"
[build-dependencies.protobuf-build]
version = "0.4.2"

[features]
default = []
failpoint = ["fail"]
gen = []
[badges.travis-ci]
repository = "pingcap/raft-rs"