We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 572affb commit 7c4eebbCopy full SHA for 7c4eebb
src/main.rs
@@ -56,8 +56,12 @@ impl Command {
56
/// Supports basic shapes and materials and .obj models.
57
/// Can render single images and animations.
58
#[derive(Parser, Debug)]
59
-#[command(about, long_about = None)]
+#[command(about, long_about = None, disable_help_flag = true)]
60
struct Cli {
61
+ /// Print help information
62
+ #[arg(long = "help", action = clap::ArgAction::Help)]
63
+ help: Option<bool>,
64
+
65
#[command(subcommand)]
66
command: Command,
67
0 commit comments