aetheris-encoder-serde 0.2.5

High-performance binary contracts and communication traits for the Aetheris Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Aetheris serde-based encoder logic.
//!
//! **Phase:** P1 - MVP Implementation
//! **Constraint:** Uses `rmp-serde` (`MessagePack`) for binary serialization of Serde-compatible types.
//! **Purpose:** Enables rapid prototyping of the replication protocol with automated
//! serialization, prior to deploying bit-packed optimizations.

#![warn(clippy::all, clippy::pedantic)]

mod serde_encoder;

pub use serde_encoder::SerdeEncoder;