From fa07aeb91c5417e53730347e6fcf3dc844421dae Mon Sep 17 00:00:00 2001 From: Tim Crawford Date: Fri, 5 Jul 2024 19:28:16 -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"