Drop the crate description from the uv help menu (#4773)

Previously this displayed:

```
❯ cargo run -q -- --help
The command line interface for the uv binary.

Usage: uv [OPTIONS] <COMMAND>
```

This is.. weird. Here I remove it entirely. I could see adding
`about_long` text being helpful in the future.
This commit is contained in:
Zanie Blue 2024-07-03 12:11:36 -04:00 committed by GitHub
parent dc4ff84443
commit a604f15028
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -49,7 +49,7 @@ fn extra_name_with_clap_error(arg: &str) -> Result<ExtraName> {
}
#[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 {