From 68d0c946f4f3d77c592ba409b464d33a859e6435 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Sun, 30 Apr 2023 17:16:11 +0200 Subject: [PATCH] Set `default` rustup profile --- blog/content/edition-3/posts/02-booting/index.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/blog/content/edition-3/posts/02-booting/index.md b/blog/content/edition-3/posts/02-booting/index.md index ec241e4d..cf667394 100644 --- a/blog/content/edition-3/posts/02-booting/index.md +++ b/blog/content/edition-3/posts/02-booting/index.md @@ -487,6 +487,7 @@ To use nightly Rust for our project, we create a new [`rust-toolchain.toml`] fil ```toml ,hl_lines=1-3 [toolchain] channel = "nightly" +profile = "default" targets = ["x86_64-unknown-none"] ``` @@ -601,6 +602,7 @@ To install them, we update our `rust-toolchain.toml` file: [toolchain] channel = "nightly" +profile = "default" targets = ["x86_64-unknown-none"] components = ["rust-src", "llvm-tools-preview"] ```