#![feature(tuple_trait)]#![feature(random)]//! Simple program utils.
//! Provides:
//! - A customizable and thread-safe progress bar implementation
//! - A watcher to watch a value for changes
//! - Generally useful functions and consts
#[cfg(feature ="progress_bar")]pubmodprog;#[cfg(feature ="watcher")]pubmodwatcher;#[cfg(feature ="vars")]pubmodvars;#[cfg(feature ="display")]pubmoddisplay;#[cfg(feature ="traits")]pubmodtraits;//#[cfg(feature = "containers")]
pubmodcontainers;modhelpers;pubmodexpiration;