From 43abdbfb96036e8e9fb445e6bae069e62d9a2f2e Mon Sep 17 00:00:00 2001 From: "Vineel Kovvuri[MSFT]" Date: Tue, 18 Aug 2026 08:44:40 -0700 Subject: [PATCH] Remove unnecessary rust-docs component Remove rust-docs from the synchronized Rust toolchain components. The component is not required to build, test, lint, or format the project. msrustup do not provide it. Removing it reduces toolchain download size and installation time. --- .sync/rust/rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.sync/rust/rust-toolchain.toml b/.sync/rust/rust-toolchain.toml index 69a87ba..977b259 100644 --- a/.sync/rust/rust-toolchain.toml +++ b/.sync/rust/rust-toolchain.toml @@ -7,7 +7,7 @@ [toolchain] channel = "1.95.0" targets = ["x86_64-unknown-uefi", "aarch64-unknown-uefi"{% for target in additional_targets %}, "{{ target }}"{% endfor %}] -components = ["rust-src", "clippy", "rustfmt", "rust-docs"] +components = ["rust-src", "clippy", "rustfmt"] # A custom section for CI pipelines to install tools [tools]