1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
use std::path::PathBuf;
use clap::{Parser, Subcommand};
/// An example command-line tool
#[derive(Parser)]
#[command(name = "complex-app")]
pub struct Cli {
/// Optional name to operate on
///
/// Longer description
name: Option<String>,
/// Sets a custom config file
#[arg(short, long, value_name = "FILE")]
config: Option<PathBuf>,
#[arg(long, default_value = "local")]
target: Target,
/// Turn debugging information on
///
/// Repeat this option to see more and more debug information.
#[arg(short, long, action = clap::ArgAction::Count)]
debug: u8,
#[arg(short, long, hide = true)]
secret_arg: bool,
#[command(subcommand)]
command: Option<Commands>,
}
#[derive(Subcommand)]
enum Commands {
/// does testing things
Test {
/// lists test values
#[arg(short, long)]
list: bool,
},
/// Demo that `Options` is not printed if all options are hidden
OnlyHiddenOptions {
#[arg(short, long, hide = true)]
secret: bool,
},
}
#[derive(clap::ValueEnum)]
#[derive(Clone)]
enum Target {
/// Do the operation locally
Local,
// Intentionally undocumented.
Remote,
}
|