Skip to content

Fix CI failures#2986

Merged
taiki-e merged 2 commits intomasterfrom
ci
Jan 20, 2026
Merged

Fix CI failures#2986
taiki-e merged 2 commits intomasterfrom
ci

Conversation

@taiki-e
Copy link
Copy Markdown
Member

@taiki-e taiki-e commented Jan 20, 2026

No description provided.

```
error: this `impl` can be derived
  --> futures-util/src/stream/select_with_strategy.rs:33:1
   |
33 | / impl Default for PollNext {
34 | |     fn default() -> Self {
35 | |         Self::Left
36 | |     }
37 | | }
   | |_^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#derivable_impls
   = note: `-D clippy::derivable-impls` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::derivable_impls)]`
help: replace the manual implementation with a derive attribute and mark the default variant
   |
 9 + #[derive(Default)]
10 | pub enum PollNext {
11 |     /// Poll the first stream.
12 ~     #[default]
13 ~     Left,
   |
```
```
error: unresolved link to `Box`
  --> futures-util/src/future/always_ready.rs:43:83
   |
43 | /// This is particularly useful in avoiding a heap allocation when an API needs [`Box<dyn Future<Output = T>>`],
   |                                                                                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^ no item named `Box` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`
   = note: `-D rustdoc::broken-intra-doc-links` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(rustdoc::broken_intra_doc_links)]`

error: unresolved link to `stream.take`
  --> futures-util/src/stream/repeat_with.rs:43:7
   |
43 | /// [`stream.take()`], in order to make them finite.
   |       ^^^^^^^^^^^^^ no item named `stream.take` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

error: unresolved link to `stream.repeat`
  --> futures-util/src/stream/repeat_with.rs:47:11
   |
47 | /// the [`stream.repeat()`] function.
   |           ^^^^^^^^^^^^^^^ no item named `stream.repeat` in scope
   |
   = help: to escape `[` and `]` characters, add '\' before them like `\[` or `\]`

error: unresolved link to `futures-util::stream::select`
   --> futures-util/src/stream/select_with_strategy.rs:120:46
    |
120 | /// Note: this special case is provided by [`futures-util::stream::select`].
    |                                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no item named `futures-util` in scope
```
@rustbot rustbot added A-future Area: futures::future A-stream Area: futures::stream S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jan 20, 2026
@taiki-e taiki-e merged commit c6b24ca into master Jan 20, 2026
25 checks passed
@rustbot rustbot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jan 20, 2026
@taiki-e taiki-e deleted the ci branch February 15, 2026 11:39
@taiki-e taiki-e mentioned this pull request Feb 15, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

0.3-backport: completed A-future Area: futures::future A-stream Area: futures::stream

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants