-
Notifications
You must be signed in to change notification settings - Fork 344
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
Using stable for cargo fmt in GitHub actions #380
Comments
I think we should 100% use stable. Good call out. |
Actually, looking at the bigger picture, we should probably define an MSRV at some point too. I'll do some tests to see what we could realistically support. In the crate's current stage, we could lower MSRV to 1.46.0 with three small changes:
We can't go any lower that this due to while and if usage in Counter argument to this is that aligning with the Rust SDK will probably be good enough. We'd still need to make those changes to support I can make those changes tomorrow and submit a PR. |
@nmoutschen can we close this? I see a related PR is merged, but not sure if there is any work remaining. |
Yes we can! :) |
Hey folks! 👋
I've noticed this uses the nightly version of Rust to do
fmt
andclippy
checks (see https://github.com/awslabs/aws-lambda-rust-runtime/blob/master/.github/workflows/build.yml#L60-L81).Since those versions might include new checks that are not yet in stable, and most people are using stable, should we change to using stable there too?
The text was updated successfully, but these errors were encountered: