-
Notifications
You must be signed in to change notification settings - Fork 101
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
needs cargo updated to parse latest ed2018 crates #141
Comments
This is due to the joelgallant@6930e6a (like rust-lang/rls#1045) This patch gets some of the way there, but the TempProject thing requires more work. I might guess that the author will just wait for this to stabilize instead of adding work for themselves, but carrying over |
I just ran into this. Worked around it by commenting out |
Isn't this going to fix itself once the next rust is released which will bring edition 2018 to stable? |
Nope; 2018 is out today, this still fails on 1.31 stable. |
Is because it uses the API of an older version of cargo |
Should be fixed by #145. |
Particularly sad for me because I just updated my copy of cargo-outdated from an ancient version that didn't have the edition feature gating yet to the broken one... I guess I'll use @bbigras 's workaround for the time being. |
This is fixed. It's waiting for crates.io release, but for now you can also install it from git. |
Any chance for a crates.io release? 🙂 |
About the release, please see #153 (comment) |
The latest cargo shipped by rust nightly has the
edition = "2018"
feature stabilized but cargo outdated still relies on cargo0.28
which does not have the feature stabilized.Thus cargo outdated fails to parse
Cargo.toml
's which use the ed2018 feature without the feature gate.The text was updated successfully, but these errors were encountered: