rockraft 0.1.6

A strong consistency KV service library base on Raft and Rocksdb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Raft consensus implementation.
//!
//! This module integrates OpenRaft with RocksDB storage and gRPC networking:
//! - [`store`]: Persistent log and state machine storage
//! - [`network`]: Network transport for Raft RPCs
//! - [`types`]: Core data types and messages
//! - [`protobuf`]: Generated gRPC service definitions

#[allow(clippy::all, dead_code)]
pub(crate) mod protobuf {
  tonic::include_proto!("raftpb");
}

pub(crate) mod network;
pub(crate) mod store;
pub mod types;