lol-core 0.6.3

A Raft implementation in Rust language.
Documentation
fn main() -> Result<(), Box<dyn std::error::Error>> {
    // let OUT_DIR = "proto_generated";
    // std::fs::create_dir(OUT_DIR);
    // tonic_build::configure()
    //     .format(true)
    //     .out_dir(OUT_DIR)
    //     .compile(&["proto/lol-core.proto"], &["proto"])?;

    let config = prost_build::Config::new();
    tonic_build::configure()
        .compile_with_config(config, &["proto/lol-core.proto"], &["proto"])?;

    Ok(())
}