Task #100917 - added.err
back to task #100917download
Error: CLIPPY_WARNING:
crates/xtask/src/anaconda.rs:924:34: warning: use of a disallowed method `str::len`
# |
# 924 | let mut end = (idx + pattern.len() + 200).min(content.len());
# | ^^^
# |
# = note: use <str>.as_bytes().len() instead
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#disallowed_methods
# = note: requested on the command line with `-D clippy::disallowed-methods`
Error: CLIPPY_WARNING:
crates/xtask/src/anaconda.rs:924:59: warning: use of a disallowed method `str::len`
# |
# 924 | let mut end = (idx + pattern.len() + 200).min(content.len());
# | ^^^
# |
# = note: use <str>.as_bytes().len() instead
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#disallowed_methods
Error: CLIPPY_WARNING:
crates/xtask/src/anaconda.rs:925:25: warning: use of a disallowed method `str::len`
# |
# 925 | while end < content.len() && !content.is_char_boundary(end) {
# | ^^^
# |
# = note: use <str>.as_bytes().len() instead
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#disallowed_methods