From c58f3f0ffc8dbb297d0ef3533f1b8ab92c4f31d1 Mon Sep 17 00:00:00 2001 From: Nick Steel Date: Tue, 30 Sep 2025 21:07:10 +0100 Subject: [PATCH] Add rustfmt and clippy to toolchain components in rust-toolchain.toml Be explicit with required components to avoid https://github.com/rust-lang/rustup/issues/4337 --- rust-toolchain.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 rust-toolchain.toml diff --git a/rust-toolchain.toml b/rust-toolchain.toml new file mode 100644 index 00000000..367cc1fc --- /dev/null +++ b/rust-toolchain.toml @@ -0,0 +1,2 @@ +[toolchain] +components = ["rustfmt", "clippy"]