mecha10-cli 0.1.47

Mecha10 CLI tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Setup command arguments

use clap::Args;

/// Run project setup script (installs dependencies)
#[derive(Args, Debug)]
pub struct SetupArgs {
    /// Run in non-interactive mode
    #[arg(long)]
    pub non_interactive: bool,

    /// Only check if tools are installed, don't install
    #[arg(long)]
    pub check_only: bool,
}