Includes all pending changes needed for nixos-anywhere: - fiberlb: L7 policy, rule, certificate types - deployer: New service for cluster management - nix-nos: Generic network modules - Various service updates and fixes 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
390 B
Rust
14 lines
390 B
Rust
//! Raft consensus for Chainfire distributed KVS
|
|
//!
|
|
//! This crate provides:
|
|
//! - Custom Raft implementation
|
|
//! - Network implementation for Raft RPC
|
|
|
|
// Custom Raft implementation
|
|
pub mod core;
|
|
|
|
// Common modules
|
|
pub mod network;
|
|
|
|
pub use core::{RaftCore, RaftConfig, RaftRole, VoteRequest, VoteResponse, AppendEntriesRequest, AppendEntriesResponse};
|
|
pub use network::RaftNetworkError;
|