mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
refactor: Resolve deprecations
This commit is contained in:
parent
ab61b33572
commit
cf20628f28
1 changed files with 3 additions and 3 deletions
|
@ -42,7 +42,7 @@ impl Default for Format {
|
|||
#[clap(about, author, version)]
|
||||
#[clap(
|
||||
setting = clap::AppSettings::DeriveDisplayOrder,
|
||||
setting = clap::AppSettings::DontCollapseArgsInUsage,
|
||||
dont_collapse_args_in_usage = true,
|
||||
color = concolor_clap::color_choice(),
|
||||
)]
|
||||
#[clap(group = clap::ArgGroup::new("mode").multiple(false))]
|
||||
|
@ -285,7 +285,7 @@ mod test {
|
|||
|
||||
#[test]
|
||||
fn verify_app() {
|
||||
use clap::IntoApp;
|
||||
Args::into_app().debug_assert()
|
||||
use clap::CommandFactory;
|
||||
Args::command().debug_assert()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue