Skip to main content

aetheris_encoder_serde/
lib.rs

1//! Aetheris serde-based encoder logic.
2//!
3//! **Phase:** P1 - MVP Implementation
4//! **Constraint:** Uses `rmp-serde` (`MessagePack`) for binary serialization of Serde-compatible types.
5//! **Purpose:** Enables rapid prototyping of the replication protocol with automated
6//! serialization, prior to deploying bit-packed optimizations.
7
8#![warn(clippy::all, clippy::pedantic)]
9
10mod serde_encoder;
11
12pub use serde_encoder::SerdeEncoder;