From 9f74b15f0c5c7e549fbff3eaa99a69e29852a5d5 Mon Sep 17 00:00:00 2001 From: Daniel McNab <36049421+DJMcNab@users.noreply.github.com> Date: Wed, 22 May 2024 09:00:30 +0100 Subject: [PATCH] Remove historical comment in `rust-toolchain.toml` A version of rustup which doesn't understand toml-formatted `rust-toolchain` files won't be looking in `rust-toolchain.toml` The file was renamed to `rust-toolchain.toml` in #4204 rust-toolchain.toml support was added in rustup 1.23, which was released on 2020-11-27 [1], 3 and a half years ago. [1]: https://blog.rust-lang.org/2020/11/27/Rustup-1.23.0.html --- rust-toolchain.toml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 642513ae4..aa10fa14e 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,9 +1,3 @@ -# If you see this, run "rustup self update" to get rustup 1.23 or newer. - -# NOTE: above comment is for older `rustup` (before TOML support was added), -# which will treat the first line as the toolchain name, and therefore show it -# to the user in the error, instead of "error: invalid channel name '[toolchain]'". - [toolchain] channel = "1.76" # Needed for deno & cts_runner. Firefox's MSRV is 1.74 components = ["rustfmt", "clippy"]