ombrac/lib.rs
1//! Ombrac protocol implementation
2//!
3//! This crate provides the core protocol components:
4//! - **codec**: Message encoding/decoding with length-delimited framing
5//! - **protocol**: Protocol message definitions and serialization
6//! - **reassembly**: UDP packet fragmentation and reassembly
7
8pub mod codec;
9pub mod protocol;
10pub mod reassembly;