The Miri build against latest rustc master is failing with the following error: ``` error: failed to parse manifest at `/home/runner/.rustup/toolchains/miri/lib/rustlib/rustc-src/rust/compiler/rustc/Cargo.toml` Caused by: error inheriting `lints` from workspace root manifest's `workspace.lints` ``` The problem is that that `Cargo.toml` file appears inside a workspace in this repo, but not in rustc-src. So this breaks every useage of cargo on the distributed rustc-src artifacts. This is caused by https://github.com/rust-lang/rust/pull/138084. Cc @nnethercote @jieyouxu. I think that PR should be reverted to minimize downstream breakage while we consider our options.