From cea4046a3ff302dac94c93566ab95184277326e7 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Fri, 16 May 2025 19:04:27 +0200 Subject: [PATCH] Unsimplify `rust-toolchain.toml` by adding `clippy` and `rustfmt` (#37028) This is a speculative fix for some intermittent clippy failures that we are seeing on the CI such as: https://github.com/servo/servo/actions/runs/15066235369/job/42351666174 These entries were removed in #35117, but it seems that they are necessary now. Testing: This is a fix for the CI, so functioning CI is effectively the test. Signed-off-by: Martin Robinson --- rust-toolchain.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 9a4c2292dbe..09d8bc760c6 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -5,10 +5,13 @@ channel = "1.85.0" components = [ + "clippy", # For support/crown "llvm-tools", # For support/crown "rustc-dev", + "rustfmt", + "rustc-dev", # For rust-analyzer "rust-src", ]