[go: up one dir, main page]

wyz 0.1.0

myrrlyn’s utility collection
/*! `wyz` – myrrlyn’s wyzyrdly library

This crate consolidates all the small tools and conveniences I’ve built up in my
experience building Rust crates.

Each module has more documentation about what it contains. The modules are
largely independent, and can be used individually.
!*/

#![deny(missing_docs)]

#![no_std]

#[cfg(feature = "alloc")]
extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

pub mod conv;
pub mod pipe;
pub mod pretty;
pub mod tap;

#[cfg(feature = "std")]
#[macro_use]
pub mod exit;

pub use conv::*;
pub use pipe::*;
pub use pretty::*;
pub use tap::*;

#[cfg(feature = "std")]
pub use exit::*;