1 2 3 4 5 6 7 8 9
use clap::Args; use crate::options::SharedOptions; #[derive(Debug, Args)] pub struct BuildCommand { #[command(flatten)] options: SharedOptions, }