Skip to content

Commit

Permalink
pin the rust toolchain to 1.61.0
Browse files Browse the repository at this point in the history
1.61.0 in particular introduced new clippy lints that unexpectedly
failed CI until addressed. The lints are a bit tough to fix since
the toolchain action starts using new rust versions almost immediately
after release, so if you aren't using rustup, you may have a hard
time reproducing the lint results until your package manager updates
rust.

This brings an extra burden that we have to remember to make a
commit/PR to update rust in CI.
  • Loading branch information
the-mikedavis authored and archseer committed May 23, 2022
1 parent f6531c9 commit aa87adf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "stable"
channel = "1.61.0"
components = ["rustfmt", "rust-src"]

0 comments on commit aa87adf

Please sign in to comment.