rmkit 0.0.14

rmkit is a toolkit set for RMK keyboard firmware
use clap::{Parser, Subcommand};

#[derive(Parser)]
#[command(author, version, about, long_about = None)]
pub struct Args {
    #[command(subcommand)]
    pub command: Commands,
}

#[derive(Subcommand, Debug)]
pub enum Commands {
    /// Create a new RMK project from keyboard.toml and vial.json
    Create {
        /// Path to keyboard.toml file
        #[arg(long)]
        keyboard_toml_path: Option<String>,

        /// Path to vial.json file
        #[arg(long)]
        vial_json_path: Option<String>,

        /// Target dir
        #[arg(long)]
        target_dir: Option<String>,
    },

    /// Initialize a new RMK project with basic configuration
    Init {
        /// Name of the project
        #[arg(long)]
        project_name: Option<String>,

        /// Target chip (e.g., nrf52840)
        #[arg(long)]
        chip: Option<String>,

        /// Whether the keyboard is split
        #[arg(long)]
        split: Option<bool>,

        /// (Optional) Local project template path
        #[arg(long)]
        local_path: Option<String>,

        /// (Optional) Whether the keyboard is row2col
        #[arg(long)]
        row2col: Option<bool>,
    },
    /// Get chip name from keyboard.toml
    GetChip {
        /// Path to keyboard.toml file
        #[arg(long)]
        keyboard_toml_path: String,
    },
    /// Get project name from keyboard.toml
    GetProjectName {
        /// Path to keyboard.toml file
        #[arg(long)]
        keyboard_toml_path: String,
    }
}