You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clap: Remove #[arg(value_parser)] which is now the default
Fixes these warnings when running `cargo check --features clap/deprecated`:
warning: use of deprecated function `<Opts as clap::Args>::augment_args::bare_value_parser`: `#[arg(value_parser)]` is now the default and is no longer needed`
--> src/main.rs:146:9
|
146 | value_parser
| ^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated function `<Opts as clap::Args>::augment_args::bare_value_parser`: `#[arg(value_parser)]` is now the default and is no longer needed`
--> src/main.rs:179:9
|
179 | value_parser
| ^^^^^^^^^^^^
0 commit comments