Task #108060 - added.err

back to task #108060
download
Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/backwards_compat/bcompat_boot.rs:229:20: warning: useless conversion to the same type: `std::string::String`
#      |
#  229 |         fixed.push(digest.into());
#      |                    ^^^^^^^^^^^^^ help: consider removing `.into()`: `digest`
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#useless_conversion
#      = note: `#[warn(clippy::useless_conversion)]` on by default

Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/backwards_compat/bcompat_boot.rs:261:26: warning: useless use of `format!`
#      |
#  261 |         .with_context(|| format!("Failed to parse origin as ini"))?;
#      |                          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.to_string()`: `"Failed to parse origin as ini".to_string()`
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#useless_format
#      = note: `#[warn(clippy::useless_format)]` on by default

Error: CLIPPY_WARNING:
crates/lib/src/bootc_composefs/backwards_compat/bcompat_boot.rs:292:9: warning: returning the result of a `let` binding from a block
#      |
#  290 |         let uki_dir = esp.fd.open_dir(BOOTC_UKI_DIR).context("Opening UKI dir")?;
#      |         ------------------------------------------------------------------------- unnecessary `let` binding
#  291 |
#  292 |         uki_dir
#      |         ^^^^^^^
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.94.0/index.html#let_and_return
#      = note: `#[warn(clippy::let_and_return)]` on by default
#  help: return the expression directly
#      |
#  290 ~         
#  291 |
#  292 ~         esp.fd.open_dir(BOOTC_UKI_DIR).context("Opening UKI dir")?
#      |