libraft 0.1.1

raft implementation in rust.
Documentation
#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(unused_results)]

#[macro_use]
extern crate log;

extern crate protobuf;
#[macro_use]
extern crate quick_error;
extern crate rand;

pub mod errors;
pub mod log_unstable;
pub mod progress;
pub mod raft;
pub mod raft_log;
pub mod raftpb;
pub mod raw_node;
pub mod read_only;
pub mod storage;
pub mod util;