push_decode 0.4.3

Push-based decoding and pull-based encoding
Documentation
pub mod combinators;

mod byte_array;
mod u8_decoder;
mod int;

#[cfg(feature = "alloc")]
mod byte_vec;

#[cfg(feature = "alloc")]
mod utf8_string;

pub use byte_array::ByteArrayDecoder;
pub use u8_decoder::U8Decoder;
pub use int::*;

#[cfg(feature = "alloc")]
pub use byte_vec::ByteVecDecoder;

#[cfg(feature = "alloc")]
pub use utf8_string::Utf8StringDecoder;

#[cfg(feature = "alloc")]
pub use utf8_string::Error as Utf8StringError;