GitHub Actions / Clippy Report
succeeded
Nov 25, 2024 in 0s
Clippy Report
3 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 3 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.82.0 (f6e511eec 2024-10-15)
- cargo 1.82.0 (8f40fc59f 2024-08-21)
- clippy 0.1.82 (f6e511e 2024-10-15)
Annotations
Check warning on line 139 in handel/src/aggregation.rs
github-actions / Clippy Report
use of a disallowed type `futures_util::stream::FuturesUnordered`
warning: use of a disallowed type `futures_util::stream::FuturesUnordered`
--> handel/src/aggregation.rs:139:36
|
139 | current_verifications: FuturesUnordered::new(),
| ^^^^^^^^^^^^^^^^
|
= note: use `nimiq_utils::stream::FuturesUnordered` instead, it does not need manual `Waker`s
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_types
Check warning on line 75 in handel/src/aggregation.rs
github-actions / Clippy Report
use of a disallowed type `futures_util::stream::FuturesUnordered`
warning: use of a disallowed type `futures_util::stream::FuturesUnordered`
--> handel/src/aggregation.rs:73:28
|
73 | current_verifications: FuturesUnordered<
| ____________________________^
74 | | BoxFuture<'static, (VerificationResult, PendingContribution<P::Contribution>)>,
75 | | >,
| |_____^
|
= note: use `nimiq_utils::stream::FuturesUnordered` instead, it does not need manual `Waker`s
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_types
Check warning on line 10 in handel/src/aggregation.rs
github-actions / Clippy Report
use of a disallowed type `futures_util::stream::FuturesUnordered`
warning: use of a disallowed type `futures_util::stream::FuturesUnordered`
--> handel/src/aggregation.rs:10:25
|
10 | stream::{BoxStream, FuturesUnordered, Stream, StreamExt},
| ^^^^^^^^^^^^^^^^
|
= note: use `nimiq_utils::stream::FuturesUnordered` instead, it does not need manual `Waker`s
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#disallowed_types
= note: `#[warn(clippy::disallowed_types)]` on by default
Loading