tcio 0.1.0

Collection of utility types.
Documentation
//! Collection of utility types.
#![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;