diff options
author | Michael Davis | 2022-05-22 01:49:06 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2022-05-23 16:05:19 +0000 |
commit | aa87adf54b0b8dec07baa257aed71d09c3efb119 (patch) | |
tree | f3de499499a68d5d600056b60f1a8cad14af1023 | |
parent | f6531c9db013b59dced06e24e132fcb6f4b65152 (diff) |
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.
-rw-r--r-- | rust-toolchain.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 79f6f8f6..b169d31e 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "stable" +channel = "1.61.0" components = ["rustfmt", "rust-src"] |