araft 0.1.0

An async raft implementation based on tokio + tonic
Documentation
1
2
3
4
5
6
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::compile_protos("./proto/raft.proto")?;
    tonic_build::compile_protos("./proto/internal.proto")?;

    Ok(())
}