Skip to content

Update Rust crate clap to v4.5.54

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

Update Rust crate clap to v4.5.54 #37

Update Rust crate clap to v4.5.54
dbf9ff2
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jan 3, 2026 in 1s

clippy

1 warning

Details

Results

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

Versions

  • rustc 1.92.0 (ded5c06cf 2025-12-08)
  • cargo 1.92.0 (344c4567c 2025-10-21)
  • clippy 0.1.92 (ded5c06cf2 2025-12-08)

Annotations

Check warning on line 21 in src/main.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this creates an owned instance just for comparison

warning: this creates an owned instance just for comparison
  --> src/main.rs:21:20
   |
21 |     if cli.path == PathBuf::from("-") {
   |        ------------^^^^^^^^^^^^^^^^^^
   |        |
   |        help: try: `cli.path == "-"`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#cmp_owned
   = note: `#[warn(clippy::cmp_owned)]` on by default