Task #92427 - fixed.err

back to task #92427
download
Error: CLIPPY_WARNING:
crates/lib/src/status.rs:835:60: warning: use of a disallowed method `str::len`
#      |
#  835 |     let max_label_len = rows.iter().map(|(label, _)| label.len()).max().unwrap_or(0);
#      |                                                            ^^^
#      |
#      = note: use <str>.as_bytes().len() instead
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#disallowed_methods
#      = note: requested on the command line with `-D clippy::disallowed-methods`

Error: CLIPPY_WARNING:
crates/tests-integration/src/container.rs:204:16: warning: use of a disallowed method `str::len`
#      |
#  204 |         digest.len(),
#      |                ^^^
#      |
#      = note: use <str>.as_bytes().len() instead
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#disallowed_methods
#      = note: requested on the command line with `-D clippy::disallowed-methods`

Error: CLIPPY_WARNING:
crates/tests-integration/src/container.rs:207:16: warning: use of a disallowed method `str::len`
#      |
#  207 |         digest.len()
#      |                ^^^
#      |
#      = note: use <str>.as_bytes().len() instead
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#disallowed_methods