aboutsummaryrefslogtreecommitdiff
path: root/rust-toolchain.toml
diff options
context:
space:
mode:
authorMichael Davis2022-05-22 01:49:06 +0000
committerBlaž Hrastnik2022-05-23 16:05:19 +0000
commitaa87adf54b0b8dec07baa257aed71d09c3efb119 (patch)
treef3de499499a68d5d600056b60f1a8cad14af1023 /rust-toolchain.toml
parentf6531c9db013b59dced06e24e132fcb6f4b65152 (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.
Diffstat (limited to 'rust-toolchain.toml')
-rw-r--r--rust-toolchain.toml2
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"]