From 687e53ebfe107fb81288df0273e581c55fd411a4 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Wed, 9 Mar 2022 22:37:44 -0600 Subject: [PATCH] Allow `cargo run` instead of `cargo run -p bootstrap` This was part of Mark's original PR in https://github.com/rust-lang/rust/commit/ecb424f12992a4aebace8a153d5efea040327a01, but I missed it when writing #92260. --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index cae48d7951783..4e78399606445 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] +default-members = ["src/bootstrap"] members = [ "src/bootstrap", "compiler/rustc",