From a604f15028f3d40356314c85df32bba9fe61d65d Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Wed, 3 Jul 2024 12:11:36 -0400 Subject: [PATCH] Drop the crate description from the `uv` help menu (#4773) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously this displayed: ``` ❯ cargo run -q -- --help The command line interface for the uv binary. Usage: uv [OPTIONS] ``` This is.. weird. Here I remove it entirely. I could see adding `about_long` text being helpful in the future. --- crates/uv-cli/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv-cli/src/lib.rs b/crates/uv-cli/src/lib.rs index 7fb7f4d04..d1845fb06 100644 --- a/crates/uv-cli/src/lib.rs +++ b/crates/uv-cli/src/lib.rs @@ -49,7 +49,7 @@ fn extra_name_with_clap_error(arg: &str) -> Result { } #[derive(Parser)] -#[command(name = "uv", author, version = uv_version::version(), long_version = crate::version::version(), about)] +#[command(name = "uv", author, version = uv_version::version(), long_version = crate::version::version())] #[command(propagate_version = true)] #[allow(clippy::struct_excessive_bools)] pub struct Cli {