/// Available commands
#[derive(Clone, Copy, Debug, Eq, PartialEq)]pubenumCommandType{/// Format code using cargo fmt
Fmt,/// Bump version in Cargo.toml
Bump,/// Publish packages in monorepo
Publish,/// Sync [workspace.dependencies] entry versions and aliases with the
/// [workspace.package].version declared in the workspace root and the
/// `[package].name` declared in each member crate.
Sync,/// Show help
Help,/// Show version
Version,}