1//! Walrus wire protocol — message types, API traits, and wire codec. 2 3pub mod api; 4pub mod codec; 5pub mod ext; 6pub mod message; 7pub mod proto; 8 9/// Current protocol version. 10pub const PROTOCOL_VERSION: &str = "0.2";