agentos_sidecar_protocol/lib.rs
1#![forbid(unsafe_code)]
2// Wire enums intentionally have wide size variance (small acks next to bulky
3// payload variants); boxing them is a wire-adjacent refactor tracked separately.
4#![allow(clippy::large_enum_variant, clippy::result_large_err)]
5
6//! Shared Secure Exec sidecar wire protocol surface.
7
8pub mod generated_protocol;
9pub mod protocol;
10pub mod wire;