1//! Network implementations for Raft RPC communication.
2//!
3//! Provides an HTTP-based RPC client and server using **postcard2** serialization
4//! for maximum throughput (70-90% smaller payloads vs JSON, 4x faster).
56pub mod http_client;
7pub mod http_service;