rustc_driver: Remove unused dependencies rustc_mir_build and rustc_typeck

Unused since commit dc3eabd487
("Store THIR in `IndexVec`s instead of an `Arena`").
This commit is contained in:
Josh Triplett 2021-06-24 23:08:19 -07:00
parent aadbf75283
commit 8f7839f722
2 changed files with 0 additions and 4 deletions

View File

@ -3808,7 +3808,6 @@ dependencies = [
"rustc_metadata",
"rustc_middle",
"rustc_mir",
"rustc_mir_build",
"rustc_parse",
"rustc_plugin_impl",
"rustc_save_analysis",
@ -3816,7 +3815,6 @@ dependencies = [
"rustc_session",
"rustc_span",
"rustc_target",
"rustc_typeck",
"tracing",
"tracing-subscriber",
"tracing-tree",

View File

@ -34,8 +34,6 @@ rustc_interface = { path = "../rustc_interface" }
rustc_serialize = { path = "../rustc_serialize" }
rustc_ast = { path = "../rustc_ast" }
rustc_span = { path = "../rustc_span" }
rustc_mir_build = { path = "../rustc_mir_build" }
rustc_typeck = { path = "../rustc_typeck" }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }