Skip to content

chore(deps): Bump clap from 4.5.41 to 4.5.42

3bbfe22
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

chore(deps): Bump clap from 4.5.41 to 4.5.42 #108

chore(deps): Bump clap from 4.5.41 to 4.5.42
3bbfe22
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jul 30, 2025 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.88.0 (6b00bc388 2025-06-23)
  • cargo 1.88.0 (873a06493 2025-05-10)
  • clippy 0.1.88 (6b00bc3880 2025-06-23)

Annotations

Check warning on line 65 in src/git.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

variables can be used directly in the `format!` string

warning: variables can be used directly in the `format!` string
  --> src/git.rs:65:23
   |
65 |         .for_each(|x| println!("{:?}", x));
   |                       ^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
   = note: `#[warn(clippy::uninlined_format_args)]` on by default
help: change this to
   |
65 -         .for_each(|x| println!("{:?}", x));
65 +         .for_each(|x| println!("{x:?}"));
   |