Update "about" in help menu (#4782)

Following #4773 

```
❯ cargo run -q -- -h
An extremely fast Python package manager.

Usage: uv [OPTIONS] <COMMAND>
```
This commit is contained in:
Zanie Blue 2024-07-03 12:36:38 -04:00 committed by GitHub
parent f980e3f4fc
commit 81442f0b4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -50,6 +50,7 @@ fn extra_name_with_clap_error(arg: &str) -> Result<ExtraName> {
#[derive(Parser)] #[derive(Parser)]
#[command(name = "uv", author, version = uv_version::version(), long_version = crate::version::version())] #[command(name = "uv", author, version = uv_version::version(), long_version = crate::version::version())]
#[command(about = "An extremely fast Python package manager.")]
#[command(propagate_version = true)] #[command(propagate_version = true)]
#[allow(clippy::struct_excessive_bools)] #[allow(clippy::struct_excessive_bools)]
pub struct Cli { pub struct Cli {