1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use std::path::PathBuf;

use clap::Parser;

/// Command-line arguments.
#[derive(Parser, Debug)]
#[command(author, version, about)]
pub struct Args {
    /// Input YAML file.
    #[arg(short, long, value_name = "FILE")]
    pub input: PathBuf,

    /// Output binary file.
    #[arg(short, long, value_name = "FILE")]
    pub output: PathBuf,
}