-
Notifications
You must be signed in to change notification settings - Fork 201
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
Add MSRV in cargo.toml #535
Conversation
Does this mean we could also jump to 2021 edition? Should we do that here or a follow up |
That would need |
I thought rust-version itself was tied to 1.56
…On Wed, Oct 27, 2021 at 1:53 PM Sympatron GmbH ***@***.***> wrote:
Does this mean we could also jump to 2021 edition? Should we do that here
or a follow up
That would need 1.56.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#535 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC5YNWWX2AQG4UFWW2R44OLUJBYGTANCNFSM5G2ZMCDQ>
.
|
I suppose you are technically correct. Previous Rust versions will just ignore it. But there is no way around it as far as I know. I think this info will still be interesting for users and could theoretically be used for CI. |
I’m just thinking, might as well go to 1.56 + 2021 edition if it’s the
first version to actually use it. One version doesn’t make much of a
difference, might as well get the benefit 🤷
…On Wed, Oct 27, 2021 at 3:49 PM Sympatron GmbH ***@***.***> wrote:
I suppose you are technically correct. Previous Rust versions will just
ignore it. But there is no way around it as far as I know. I think this
info will still be interesting for users and could theoretically be used
for CI.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#535 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AC5YNWTBKQ7ZSR5V6E2YDGTUJCFZ7ANCNFSM5G2ZMCDQ>
.
|
Done. With 2021 edition cargo will complain about 2021 not being stable below |
@Sympatron Update the CHANGELOG and this should be good to go! |
This PR just sets the
rust-version
incargo.toml
to1.55
, because this will be our MSRV once #526 is merged.I don't know what our MSRV was before, but I don't think it matters much once #526 lands.The previous MSRV was1.46
.