//! [Raft]アルゴリズムに基づく分散複製ログを提供するクレート.
//!
//! このクレート自体は、アルゴリズム実装のみに専念しており、
//! 実際に動作するシステムで利用するためには、`Io`トレイトの
//! 実装を別個用意する必要がある.
//!
//! [Raft]: https://raft.github.io/
extern crate fibers;
extern crate futures;
extern crate prometrics;
extern crate trackable;
pub use ;
pub use Io;
pub use ;
/// クレート固有の`Result`型.
pub type Result<T> = Result;