//! Plan command options
useclap::Parser;/// Plan command options
#[derive(Parser, Debug, Clone)]pubstructPlanOpts{/// Include already published crates in plan
#[arg(long)]pubinclude_published:bool,
/// Show dependency graph
#[arg(long)]pubshow_deps:bool,
/// Format: json (default), dot (graphviz)
#[arg(long)]pubformat:Option<String>,
/// Allow the workspace version to differ from the last release tag
#[arg(long)]puballow_version_drift:bool,
}