1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! Simulate command options use clap::Parser; /// Simulate command options #[derive(Parser, Debug, Clone)] pub struct SimulateOpts { /// Version to simulate #[arg(short = 'v', long)] pub version: Option<String>, /// Number of downstream crates to simulate #[arg(long)] pub downstream_crates: Option<usize>, /// Simulation report format #[arg(long)] pub report_format: Option<String>, }