You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This command cargo install --force cargo-udeps fails during dependency compilation (with nightly Rust):
Compiling git2-curl v0.18.0
error[E0599]: `Vec<u8>` is not an iterator
--> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cargo-0.72.2/src/cargo/core/compiler/future_incompat.rs:275:18
|
274 | / strip_ansi_escapes::strip(&to_display)
275 | | .map(|v| String::from_utf8(v).expect("utf8"))
| | -^^^ `Vec<u8>` is not an iterator; try calling `.into_iter()` or `.iter()`
| |_________________|
|
--> /rustc/03a119b0b0e310d22d94399b24ed030056050f13/library/alloc/src/vec/mod.rs:396:1
|
= note: doesn't satisfy `Vec<u8>: Iterator`
|
= note: the following trait bounds were not satisfied:
`Vec<u8>: Iterator`
which is required by `&mut Vec<u8>: Iterator`
`[u8]: Iterator`
which is required by `&mut [u8]: Iterator`
= help: items from traits can only be used if the trait is in scope
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
|
36 + use winnow::parser::Parser;
|
The text was updated successfully, but these errors were encountered:
This command
cargo install --force cargo-udeps
fails during dependency compilation (with nightly Rust):The text was updated successfully, but these errors were encountered: