From f089f76ed4bccccd830260dc35edc3f716e4647d Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Sun, 4 Jun 2023 09:08:22 -0700 Subject: [PATCH] Remove rustc-workspace-hack --- Cargo.lock | 7 ------- Cargo.toml | 4 ---- cargo-miri/Cargo.lock | 7 ------- cargo-miri/Cargo.toml | 5 ----- 4 files changed, 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7bedb5d48f..fa30dd21ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -442,7 +442,6 @@ dependencies = [ "measureme", "rand", "regex", - "rustc-workspace-hack", "rustc_version", "smallvec", "ui_test", @@ -628,12 +627,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" -[[package]] -name = "rustc-workspace-hack" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc71d2faa173b74b232dedc235e3ee1696581bb132fc116fa3626d6151a1a8fb" - [[package]] name = "rustc_version" version = "0.4.0" diff --git a/Cargo.toml b/Cargo.toml index 683f99ca4d..143ea6e542 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,10 +24,6 @@ log = "0.4" rand = "0.8" smallvec = "1.7" -# A noop dependency that changes in the Rust repository, it's a bit of a hack. -# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust` -# for more information. -rustc-workspace-hack = "1.0.0" measureme = "10.0.0" ctrlc = "3.2.5" diff --git a/cargo-miri/Cargo.lock b/cargo-miri/Cargo.lock index 727e46a028..a8cfccd37c 100644 --- a/cargo-miri/Cargo.lock +++ b/cargo-miri/Cargo.lock @@ -30,7 +30,6 @@ dependencies = [ "cargo_metadata", "directories", "rustc-build-sysroot", - "rustc-workspace-hack", "rustc_tools_util", "rustc_version", "serde", @@ -235,12 +234,6 @@ dependencies = [ "tempfile", ] -[[package]] -name = "rustc-workspace-hack" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc71d2faa173b74b232dedc235e3ee1696581bb132fc116fa3626d6151a1a8fb" - [[package]] name = "rustc_tools_util" version = "0.3.0" diff --git a/cargo-miri/Cargo.toml b/cargo-miri/Cargo.toml index 09079dbb81..cfa5ac5281 100644 --- a/cargo-miri/Cargo.toml +++ b/cargo-miri/Cargo.toml @@ -20,11 +20,6 @@ serde_json = "1.0.40" cargo_metadata = "0.15.0" rustc-build-sysroot = "0.4.1" -# A noop dependency that changes in the Rust repository, it's a bit of a hack. -# See the `src/tools/rustc-workspace-hack/README.md` file in `rust-lang/rust` -# for more information. -rustc-workspace-hack = "1.0.0" - # Enable some feature flags that dev-dependencies need but dependencies # do not. This makes `./miri install` after `./miri build` faster. serde = { version = "*", features = ["derive"] }