pub fn main_with_args(
    command_name: &str,
    args: impl IntoIterator<Item = String>
) -> Result<()>
Expand description

The main xtask entry point function, but with custom command line arguments. args should not contain the command name, so you should always skip at least one argument from std::env::args() before passing it to this function.