usesuper::*;/// Parsed command line arguments
#[derive(Clone, Debug)]pubstructArgs{/// The command to execute
pubcommand: CommandType,
/// Check mode for fmt
pubcheck:bool,
/// Manifest path for fmt, bump, publish and sync
pubmanifest_path:Option<String>,
/// Bump type for bump command
pubbump_type:Option<BumpVersionType>,
/// Maximum retry attempts for publish command
pubmax_retries:u32,
}