-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Remove newly stabilized features #967
Conversation
... and I forgot that this affects the minimum supported rustc 🙄. |
@jebrosen Rollback? The PR is still open and can be merged at a later date (likely around the time 0.5 comes out). |
If you would change the minimum nightly in |
Bumped. |
@@ -1,6 +1,5 @@ | |||
#![feature(proc_macro_diagnostic, proc_macro_span)] | |||
#![feature(crate_visibility_modifier)] | |||
#![feature(transpose_result)] |
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.
This bumps the minimum rustc for codegen
, but only to around 2019-01-13. Since there are a few other PRs open that affect the minimum rustc, we can just take care of this when merging to avoid conflicts.
Merged in 9b219dd. |
transpose_result
andtry_from
have both been stabilized in 1.34. This removes the compiler flags.Related: Compile on stable Rust (#19).