utls 0.7.5

A simple utilities library for stuff I actually use sometimes, with a large focus on convenience and lack of dependencies.
Documentation
//! 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")]
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;

mod helpers;