apfsds_protocol/
lib.rs

1//! APFSDS Protocol - Frame definitions and serialization
2//!
3//! This crate defines the core data structures for the APFSDS protocol:
4//! - `ProxyFrame`: The fundamental unit of data transmission
5//! - `AuthRequest`/`AuthResponse`: Authentication handshake
6//! - `TokenPayload`: One-time connection tokens
7//! - `ControlMessage`: Out-of-band control messages
8//!
9//! All structures use rkyv for zero-copy deserialization.
10
11mod auth;
12mod frame;
13mod validation;
14
15pub use auth::*;
16pub use frame::*;
17pub use validation::*;