prodash 23.1.2

A dashboard for visualizing progress of asynchronous and possibly blocking tasks
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(all(
    feature = "render-line",
    not(any(feature = "render-line-crossterm", feature = "render-line-termion"))
))]
compile_error!("Please choose either one of these features: 'render-line-crossterm' or 'render-line-termion'");

mod draw;
mod engine;

pub use engine::{render, JoinHandle, Options, StreamKind};