avance 0.4.1

A lightweight, concurrent and easy-to-use progress bar
Documentation
1
2
3
4
5
6
7
8
9
use version_check as rustc;

fn main() {
    if rustc::is_min_version("1.70.0").unwrap_or(false) {
        println!("cargo:rustc-cfg=std_once_cell")
    } else {
        println!("cargo:rustc-cfg=extern_once_cell")
    }
}