//! Modbus frame layer — bridges the `no_std` codec to tokio async.
//!
//! Implements `tokio_util::codec::Decoder`/`Encoder` for MBAP (TCP) and RTU framing.
//! Houses CRC-16/Modbus computation and owned (`'static`) response types backed by `Bytes`.
pub use ;
pub use FrameError;
pub use ;
pub use MbapCodec;
pub use ;