mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 23:02:38 +00:00
false: update to clap 4
This commit is contained in:
parent
458c2c8b85
commit
8260090ea1
2 changed files with 4 additions and 4 deletions
|
@ -15,7 +15,7 @@ edition = "2021"
|
|||
path = "src/false.rs"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "3.2", features = ["wrap_help", "cargo"] }
|
||||
clap = { version = "4.0", features = ["wrap_help", "cargo"] }
|
||||
uucore = { version=">=0.0.16", package="uucore", path="../../uucore" }
|
||||
|
||||
[[bin]]
|
||||
|
|
|
@ -33,8 +33,8 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
|
||||
if let Err(e) = command.try_get_matches_from_mut(args) {
|
||||
let error = match e.kind() {
|
||||
clap::ErrorKind::DisplayHelp => command.print_help(),
|
||||
clap::ErrorKind::DisplayVersion => {
|
||||
clap::error::ErrorKind::DisplayHelp => command.print_help(),
|
||||
clap::error::ErrorKind::DisplayVersion => {
|
||||
writeln!(std::io::stdout(), "{}", command.render_version())
|
||||
}
|
||||
_ => Ok(()),
|
||||
|
@ -50,7 +50,7 @@ pub fn uumain(args: impl uucore::Args) -> UResult<()> {
|
|||
Ok(())
|
||||
}
|
||||
|
||||
pub fn uu_app<'a>() -> Command<'a> {
|
||||
pub fn uu_app() -> Command {
|
||||
Command::new(uucore::util_name())
|
||||
.version(clap::crate_version!())
|
||||
.about(ABOUT)
|
||||
|
|
Loading…
Reference in a new issue