-
Notifications
You must be signed in to change notification settings - Fork 653
chore: replace all internal usage of pin_mut #2941
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
Conversation
Signed-off-by: tison <[email protected]>
We have some MSRV as |
Signed-off-by: tison <[email protected]>
5689b48
to
b6a2a53
Compare
Signed-off-by: tison <[email protected]>
22f9836
to
5b61de3
Compare
Thanks! Considering that all of the affected code except futures-executor/src/local_pool.rs and futures-util/src/future/future/mod.rs are tests, it might be a good idea to split those two into a separate PR. In that case, the changes to the tests would not affect the MSRV, so we can backport these right in. |
@@ -27,7 +26,7 @@ mod fuse; | |||
mod map; | |||
|
|||
delegate_all!( | |||
/// Future for the [`flatten`](super::FutureExt::flatten) method. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please split unrelated changes into separate PRs as they will be difficult to review.
OK. I'll submit two separated PRs. |
This follows up #2929 (comment) step 2.
cc @taiki-e
We don't use a unified MSRV. So I'm understanding which versions should be updated.
This refers to #2924