diff --git a/rust/pvimg/src/cli.rs b/rust/pvimg/src/cli.rs index 8b63be4f..2ca4e901 100644 --- a/rust/pvimg/src/cli.rs +++ b/rust/pvimg/src/cli.rs @@ -248,6 +248,14 @@ pub struct GenprotimgCliOptions { // version command. #[arg(long, action = clap::ArgAction::SetTrue )] pub version: (), + + #[arg(long, action = clap::ArgAction::HelpLong, hide(true))] + /// Print help (deprecated, use '--help' instead). + help_all: (), + + #[arg(long, action = clap::ArgAction::HelpLong, hide(true))] + /// Print help (deprecated, use '--help' instead). + help_experimental: (), } impl GenprotimgCliOptions {