utls 0.11.9

A simple utilities library for stuff I actually use sometimes, with a large focus on convenience and lack of dependencies.
Documentation
#![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
//! - A CircularBuffer<T>, and SortedList with customizable sorting functions

#[cfg(feature = "progress_bar")]
pub mod prog;

#[cfg(feature = "watcher")]
pub mod watcher;

#[cfg(feature = "vars")]
pub mod vars;

#[cfg(feature = "display")]
pub mod display;

//#[cfg(feature = "traits")]
pub mod traits;

//#[cfg(feature = "containers")]
pub mod containers;

mod helpers;
pub mod expiration;