openraft 0.10.0-alpha.18

Advanced Raft consensus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Components and sub systems of the openraft project.
//!
//! - [`Engine and Runtime`](engine_runtime)
//! - [`StateMachine`](state_machine)

pub mod engine_runtime {
    #![doc = include_str!("engine-runtime.md")]
}

pub mod state_machine {
    #![doc = include_str!("state-machine.md")]
}