#![doc = include_str!("../README.md")]
#![deny(missing_docs)]
pub mod errors;
pub mod http;
#[cfg(any(
feature = "json",
feature = "xml",
feature = "msgpack",
feature = "yaml",
feature = "flex",
feature = "cbor"
))]
pub mod serde;
#[cfg(any(feature = "deflate", feature = "gzip", feature = "brotli"))]
#[cfg(test)]
mod tests;