-
Notifications
You must be signed in to change notification settings - Fork 72
Closed
Labels
bugSomething isn't workingSomething isn't workingstabilityIssues related to the stability of the serviceIssues related to the stability of the servicetestingTask related to testingTask related to testing
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/git.colasdn.top-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)*);
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingstabilityIssues related to the stability of the serviceIssues related to the stability of the servicetestingTask related to testingTask related to testing