#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
#![warn(clippy::missing_inline_in_public_items)]
mod bytestr;
mod either;
mod either_map;
pub mod futures;
pub mod io;
#[cfg(feature = "tokio")]
pub mod tokio;
pub use bytestr::ByteStr;
pub use either::Either;
pub use either_map::EitherMap;