From 1db38a3128aa6cd64873131b126d25ebb2752f00 Mon Sep 17 00:00:00 2001 From: Mehul Arora <65443164+infiniteregrets@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:58:18 -0500 Subject: [PATCH] fix: disable noisy description in help (#79) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f654028..5631709 100644 --- a/src/main.rs +++ b/src/main.rs @@ -61,7 +61,7 @@ const GENERAL_USAGE: &str = color_print::cstr!( ); #[derive(Parser, Debug)] -#[command(version, about, override_usage = GENERAL_USAGE, styles = STYLES)] +#[command(version, override_usage = GENERAL_USAGE, styles = STYLES)] struct Cli { #[command(subcommand)] command: Commands,