//! Primitive framing helpers shared by the wire encoder and decoder.
/// Wire-format magic and version constants.
pub use ;
/// Encode a checked `usize` length as a little-endian `u32`.
pub use put_len_u32;
/// Encode a bounded UTF-8 string.
pub use put_string;
/// Encode a little-endian `u32`.
pub use put_u32;
/// Encode one byte.
pub use put_u8;
dir!;