//! `upgrade` subcommand: parse-shape.
//!//! Holds the clap derive struct only. No I/O, no business logic.
usecamino::Utf8PathBuf;/// Upgrade an installed instance to this binary's version.
#[derive(Debug, clap::Args)]pubstructUpgradeArgs{/// The instance to upgrade; absolute, or the working directory.
#[arg(long, default_value =".")]pubtarget: Utf8PathBuf,
/// Report the plan and change nothing.
#[arg(long)]pubdry_run:bool,
}