mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00
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:
parent
dc4ff84443
commit
a604f15028
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue