From aa87adf54b0b8dec07baa257aed71d09c3efb119 Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Sat, 21 May 2022 20:49:06 -0500 Subject: [PATCH] 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. --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]