1
Fork 0

Rollup merge of #132726 - clubby789:unused-deps, r=compiler-errors

Remove unused intercrate dependencies

Checked by enabling `-Wunused-crate-dependencies`

`driver_impl` still depends on `index` to forward the `rustc_randomized_layouts` feature, and `rustc_main` depends on several unused crates for sysroot reasons

r? compiler
This commit is contained in:
Matthias Krüger 2024-11-07 18:19:37 +01:00 committed by GitHub
commit 77ba4f03b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 2 additions and 24 deletions

View file

@ -8,9 +8,7 @@ edition = "2021"
bitflags = "2.4.1"
rustc_abi = { path = "../rustc_abi" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_feature = { path = "../rustc_feature" }
rustc_fs_util = { path = "../rustc_fs_util" }
rustc_index = { path = "../rustc_index" }
rustc_macros = { path = "../rustc_macros" }
rustc_serialize = { path = "../rustc_serialize" }
rustc_span = { path = "../rustc_span" }