retrogress 2.0.0

Progress bars with a thin API around complex features
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Retrogress

Retrogress provides thread-safe progress bars with a simple and limited
API that can be passed between modules and functions.

This crate is designed for projects that need to share progress bars
between different sections of code. It provides implementations for both
single-threaded (Sync) and multi-threaded (Parallel) scenarios, allowing
progress bars to be passed around, borrowed, or moved between threads.

``` rust
cargo run --example sync
```