aetheris-encoder-serde 0.2.3

High-performance binary contracts and communication traits for the Aetheris Engine
Documentation

aetheris-encoder-serde

A MessagePack encoder implementation for the Aetheris Protocol.

Overview

A rapid-iteration Encoder implementation using MessagePack (rmp-serde). Optimized for schema flexibility during development.

Usage

Add this to your Cargo.toml:

[dependencies]
aetheris-encoder-serde = "0.2.0"

Then initialize the encoder:

use aetheris_encoder_serde::SerdeEncoder;

let encoder = SerdeEncoder::new();
// Use with aetheris-protocol traits

For more details, see the main repository README.