substudy 0.5.2

Language-learning tools for working with parallel, bilingual subtitles and media files.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Progress bar support.

use indicatif::ProgressStyle;

/// Our default progress style.
pub(crate) fn default_progress_style() -> ProgressStyle {
    ProgressStyle::default_bar()
        .template("{prefix} {pos:>4}/{len:4} {wide_bar:.cyan/blue} {eta_precise}")
        .expect("bad progress bar template")
}