1//! Utilities for decoding messages from binary representations. 2 3pub mod common; 4#[cfg(feature = "messagepack")] 5pub mod messagepack; 6 7pub use common::{DecodeError, Decoder};