concurrent_shell_commands 0.4.0

runs commands concurrently and display their name and output, with configurable filtering of output
Documentation
1
2
3
4
5
6
use std::process::ExitCode;

pub fn version() -> ExitCode {
    println!("conc {}", env!("CARGO_PKG_VERSION"));
    ExitCode::SUCCESS
}