From 2a44e03a402975b93d836f132b5d93d4f9271169 Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Fri, 5 Jul 2024 19:31:31 -0600 Subject: [PATCH] Update Rust toolchain config Remove rust-src as it is not required. Use a minimal profile with clippy and rustfmt installed, instead of the default profile, as rust-docs is not needed. Signed-off-by: Tim Crawford --- rust-toolchain.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 46893dd..1d5e2d2 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,4 @@ [toolchain] channel = "nightly-2024-05-11" -components = ["rust-src"] +components = ["clippy", "rustfmt"] +profile = "minimal"