fix(deps): update rust crate clap to 4.5.26 #466
Annotations
3 errors and 1 warning
Run clippy:
src/command/backup/args.rs#L78
error: this `map_or` is redundant
--> src/command/backup/args.rs:78:9
|
78 | solution_status.map_or(false, |st| st >= self.status)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use is_some_and instead: `solution_status.is_some_and(|st| st >= self.status)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `-D clippy::unnecessary-map-or` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_map_or)]`
|
Run clippy:
src/command/backup/args.rs#L78
error: this `map_or` is redundant
--> src/command/backup/args.rs:78:9
|
78 | solution_status.map_or(false, |st| st >= self.status)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use is_some_and instead: `solution_status.is_some_and(|st| st >= self.status)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `-D clippy::unnecessary-map-or` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_map_or)]`
|
Run clippy
Clippy has exited with exit code 101
|
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Loading