Skip to content

Fix CI failure and update CI config #2960

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 19, 2025
Merged

Fix CI failure and update CI config #2960

merged 4 commits into from
Jul 19, 2025

Conversation

taiki-e
Copy link
Member

@taiki-e taiki-e commented Jul 19, 2025

No description provided.

taiki-e added 2 commits July 19, 2025 17:37
```
error: unnecessary parentheses around type
  --> futures-util/src/future/future/remote_handle.rs:72:57
   |
72 | type SendMsg<Fut> = Result<<Fut as Future>::Output, Box<(dyn Any + Send + 'static)>>;
   |                                                         ^                        ^
   |
   = note: `-D unused-parens` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(unused_parens)]`
help: remove these parentheses
   |
72 - type SendMsg<Fut> = Result<<Fut as Future>::Output, Box<(dyn Any + Send + 'static)>>;
72 + type SendMsg<Fut> = Result<<Fut as Future>::Output, Box<dyn Any + Send + 'static>>;
   |
```
```
error: trait `Fn1` is never used
  --> futures-util/src/fns.rs:34:11
   |
34 | pub trait Fn1<A>: FnMut1<A> {
   |           ^^^
   |
   = note: `-D dead-code` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(dead_code)]`
```
@rustbot rustbot added A-future Area: futures::future S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 19, 2025
@taiki-e taiki-e merged commit b95f0ad into master Jul 19, 2025
25 checks passed
@rustbot rustbot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jul 19, 2025
@taiki-e taiki-e deleted the ci branch July 19, 2025 09:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-future Area: futures::future
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants