Task #107581 - fixed.err

back to task #107581
download
Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/gc.rs:236:14: warning: using `contains()` instead of `iter().any()` is more efficient
#      |
#  236 |               !bootloader_entries
#      |  ______________^
#  237 | |                 .iter()
#  238 | |                 .any(|boot_entry| bin_path.1 == *boot_entry)
#      | |____________________________________________________________^ help: try: `bootloader_entries.contains(&bin_path.1)`
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#manual_contains
#      = note: `#[warn(clippy::manual_contains)]` on by default