Closed
Description
As mentioned, Fuzz Testing & Nightly Cargo udeps are failing due to prost-derive.
Compiling prost-derive v0.6.1
error[E0034]: multiple applicable items in scope
--> /home/runner/.cargo/registry/src/github.com-1ecc6299db9ec823/prost-derive-0.6.1/src/lib.rs:111:14
|
111 | .intersperse(quote!(|));
| ^^^^^^^^^^^ multiple `intersperse` found
|
= note: candidate #1 is defined in an impl of the trait `Iterator` for the type `Map<I, F>`
= note: candidate #2 is defined in an impl of the trait `Itertools` for the type `T`
help: disambiguate the associated function for candidate #1
|
107 ~ let tags = Iterator::intersperse(field
108 + .tags()
109 + .into_iter()
110 + .map(|tag| quote!(#tag)), {
111 + let mut _s = $crate::__private::TokenStream::new();
112 + $crate::quote_each_token!(_s $($tt)*);
...
help: disambiguate the associated function for candidate #2
|
107 ~ let tags = Itertools::intersperse(field
108 + .tags()
109 + .into_iter()
110 + .map(|tag| quote!(#tag)), {
111 + let mut _s = $crate::__private::TokenStream::new();
112 + $crate::quote_each_token!(_s $($tt)*);