1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-04-19 05:13:52 +02:00

pin the rust toolchain to 1.61.0

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.
This commit is contained in:
Michael Davis 2022-05-21 20:49:06 -05:00 committed by Blaž Hrastnik
parent f6531c9db0
commit aa87adf54b

View File

@ -1,3 +1,3 @@
[toolchain]
channel = "stable"
channel = "1.61.0"
components = ["rustfmt", "rust-src"]