forklaunch 1.15.0

Launch faster with forklaunch
1
2
3
4
5
6
7
use clap::Command;

pub(crate) fn command(name: impl Into<&'static str>, about: impl Into<&'static str>) -> Command {
    Command::new(name.into())
        .propagate_version(true)
        .about(about.into())
}