From 3096baf462eebdce3227977dd698d1ee24f61396 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 17 Jul 2020 16:00:17 +0200 Subject: [PATCH] Fix: rustc-std-workpace-core is a dependency of compiler_builtins, not core --- .../second-edition/posts/02-minimal-rust-kernel/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md index b056fceb..534e0cfa 100644 --- a/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md +++ b/blog/content/second-edition/posts/02-minimal-rust-kernel/index.md @@ -286,7 +286,7 @@ After setting the `unstable.build-std` configuration key and installing the `rus Finished dev [unoptimized + debuginfo] target(s) in 0.29 secs ``` -We see that `cargo build` now recompiles the `core`, `rustc-std-workspace-core` (another dependency of `core`), and `compiler_builtin` libraries for our custom target. +We see that `cargo build` now recompiles the `core`, `rustc-std-workspace-core` (a dependency of `compiler_builtins`), and `compiler_builtins` libraries for our custom target. #### The `rlibc` Crate