-
-
Notifications
You must be signed in to change notification settings - Fork 34
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
pin-project 0.4.11 breaks hyper #206
Comments
Thanks for the reporting! I yanked 0.4.11. I'll look into this. |
provisional measures soultion: ...
[dependencies]
pin-project = "=0.4.10"
... |
I released 0.4.12 based on 0.4.10. (It should be fixed by updating Cargo.lock: |
EDIT: see #206 (comment) |
Oops, it actually seems to skip all expressions visits nested by expressions, not just local. |
Thank you for the quick fix! |
Hello, hyper uses
#[project]
on an expression https://github.com/hyperium/hyper/blob/v0.13.5/src/server/conn.rs#L926 and https://github.com/hyperium/hyper/blob/v0.13.5/src/server/shutdown.rs#L65 which now causes a compilation error with pin-project 0.4.11.Here is one of your test cases adapted to demonstrate the issue, this code works fine with 0.4.10 but not 0.4.11:
Error:
The text was updated successfully, but these errors were encountered: