-
Notifications
You must be signed in to change notification settings - Fork 25
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
Minimum Supported Rust Version = 1.77.0 #323
Conversation
LGTM. @andrewliebenow, any comments? |
Does not actually build on 1.77.0:
We either need to add the changes that were in my PR, or bump the version to 1.80.0. Your reasoning made sense to me: it probably isn't worth making too many changes just for the purpose of backwards compatibility. I just think it would be good to start checking/tracking MSRV, so that developers don't accidentally increase the minimum Rust version needed without knowing that they're doing that. I'd also suggest that a CI run is added to ensure that the project actually builds with whatever MSRV is advertised in the Cargo.toml files. I'm not sure how to do that. @fox0 my PR also added a andrewliebenow@680fe57#diff-f3dbfb2563c3490394f44c26b51837018e79a79e75fd31e89b19e943a38317ea |
It looks like using a specific toolchain version might be as simple as adding this step to the GitHub workflow:
|
|
I am not allowed to make edits to |
Okay, so my suggestion would be to edit your PR and change the version to 1.80.0. |
Agree |
#304