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