From c062de35cad8ddb65abef6cc83961c3e12e66cff Mon Sep 17 00:00:00 2001 From: Stu Hood Date: Wed, 6 Jan 2021 14:36:52 -0800 Subject: [PATCH] Require the `rust-std` component in rustup. (#11422) Followup to #11420: we additionally need the stdlib. --- rust-toolchain | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/rust-toolchain b/rust-toolchain index 9db5ea12f52..aa06956b4ef 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -1 +1,9 @@ -1.48.0 +[toolchain] +channel = "1.48.0" +components = [ + "cargo", + "clippy", + "rust-std", + "rustc", + "rustfmt", +]