utls 0.5.5

A simple utilities library for stuff I actually use sometimes, with a large focus on convenience and lack of dependencies.
Documentation
1
2
3
4
5
6
7
8
9
//! Simple program utils.
//! Provides:
//! - A customizable and thread-safe progress bar implementation
//! - A watcher to watch a value for changes
pub mod prog;
pub mod helpers;
pub mod watcher;
pub mod vars;
pub mod display;