pueue 0.11.1

A cli tool for managing long running shell commands.
1
2
3
4
5
6
7
8
9
use ::version_check;

fn main() {
    if !version_check::is_min_version("1.42.0").unwrap_or(false) {
        eprintln!("Pueue needs to be build with Rust version >=1.42");
        eprintln!("Please update your rust version to stable.");
        std::process::exit(1);
    }
}