prodash 7.1.1

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 = "line-renderer",
    not(any(feature = "line-renderer-crossterm", feature = "line-renderer-termion"))
))]
compile_error!("Please choose either one of these features: 'line-renderer-crossterm' or 'line-renderer-termion'");

mod draw;
mod engine;

pub use engine::*;