agreed 1.1.0

Fork of async-raft, the Tokio-based Rust implementation of the Raft protocol.
[package]
name = "agreed"
version = "1.1.0"
edition = "2018"
authors = ["Attila Bagossy <attila.bagossy@nlv8.com>"]
categories = ["algorithms", "asynchronous", "data-structures"]
description = "Fork of async-raft, the Tokio-based Rust implementation of the Raft protocol."
documentation = "https://docs.rs/agreed"
homepage = "https://github.com/nlv8/agreed"
keywords = ["raft", "consensus", "data-storage"]
license = "MIT/Apache-2.0"
repository = "https://github.com/nlv8/agreed"
readme = "../README.md"

[dependencies]
anyhow = "1.0.40"
async-trait = "0.1.50"
bytes = "1.0"
derive_more = { version="0.99.13", default-features=false, features=["from"] }
futures = "0.3"
log = "0.4"
rand = "0.8"
serde = { version="1", features=["derive"] }
thiserror = "1.0.24"
tokio = { version="1.0", default-features=false, features=["fs", "io-util", "macros", "rt", "rt-multi-thread", "sync", "time"] }
tracing = "0.1"
tracing-futures = "0.2.5"

[features]
docinclude = [] # Used only for activating `doc(include="...")` on nightly.

[package.metadata.docs.rs]
features = ["docinclude"] # Activate `docinclude` during docs.rs build.