Skip to content

Update Rust crate clap to v4.5.55

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

Update Rust crate clap to v4.5.55 #40

Update Rust crate clap to v4.5.55
d0ebef8
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jan 28, 2026 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.93.0 (254b59607 2026-01-19)
  • cargo 1.93.0 (083ac5135 2025-12-15)
  • clippy 0.1.93 (254b59607d 2026-01-19)

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.93.0/index.html#cmp_owned
   = note: `#[warn(clippy::cmp_owned)]` on by default