Skip to content

Commit 35c1b7d

Browse files
klensyytmimi
authored andcommitted
fix clap deprecations
Run 'cargo check --features clap/deprecated' and fix all warnings
1 parent 21f353a commit 35c1b7d

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

src/cargo-fmt/main.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ pub struct Opts {
6161

6262
/// Options passed to rustfmt
6363
// 'raw = true' to make `--` explicit.
64-
#[arg(name = "rustfmt_options", raw = true)]
64+
#[arg(id = "rustfmt_options", raw = true)]
6565
rustfmt_options: Vec<String>,
6666

6767
/// Format all packages, and also their local path-based dependencies
@@ -209,9 +209,8 @@ fn convert_message_format_to_rustfmt_args(
209209
fn print_usage_to_stderr(reason: &str) {
210210
eprintln!("{reason}");
211211
let app = Opts::command();
212-
app.after_help("")
213-
.write_help(&mut io::stderr())
214-
.expect("failed to write to stderr");
212+
let help = app.after_help("").render_help();
213+
eprintln!("{help}");
215214
}
216215

217216
#[derive(Debug, Clone, Copy, PartialEq, Eq)]

src/format-diff/main.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ enum FormatDiffError {
3838
}
3939

4040
#[derive(Parser, Debug)]
41-
#[clap(
41+
#[command(
4242
name = "rustfmt-format-diff",
4343
disable_version_flag = true,
4444
next_line_help = true
4545
)]
4646
pub struct Opts {
4747
/// Skip the smallest prefix containing NUMBER slashes
48-
#[clap(
48+
#[arg(
4949
short = 'p',
5050
long = "skip-prefix",
5151
value_name = "NUMBER",
@@ -54,7 +54,7 @@ pub struct Opts {
5454
skip_prefix: u32,
5555

5656
/// Custom pattern selecting file paths to reformat
57-
#[clap(
57+
#[arg(
5858
short = 'f',
5959
long = "filter",
6060
value_name = "PATTERN",

0 commit comments

Comments
 (0)