quorum-set 0.1.0

Hierarchical quorum trees with deterministic canonical IDs
Documentation
//! A quorum is a set of nodes a vote request or append-entries request has to contact to.
//! The most common quorum is **majority**.
//! A quorum set is a collection of quorums, e.g., the quorum set of the majority of `{a,b,c}` is
//! `{a,b}, {b,c}, {a,c}`.

mod coherent;
mod coherent_impl;
mod quorum_set;
mod quorum_set_impl;

#[cfg(feature = "bench")]
#[cfg(test)]
mod bench;

#[cfg(test)]
mod coherent_test;
#[cfg(test)]
mod quorum_set_test;

pub use coherent::Coherent;
pub use coherent::FindCoherent;
pub use quorum_set::QuorumSet;