Skip to content

Commit c93ddbf

Browse files
authored
Rollup merge of #72364 - jsgf:remove-unused-deps, r=Mark-Simulacrum
Remove unused dependencies Remove some unused dependencies found while while working on #72342.
2 parents 2bfbc05 + 508e3f2 commit c93ddbf

File tree

5 files changed

+0
-8
lines changed

5 files changed

+0
-8
lines changed

Cargo.lock

-4
Original file line numberDiff line numberDiff line change
@@ -4088,7 +4088,6 @@ dependencies = [
40884088
"log",
40894089
"measureme",
40904090
"polonius-engine",
4091-
"rustc-rayon",
40924091
"rustc-rayon-core",
40934092
"rustc_apfloat",
40944093
"rustc_ast",
@@ -4151,7 +4150,6 @@ dependencies = [
41514150
"rustc_hir",
41524151
"rustc_index",
41534152
"rustc_infer",
4154-
"rustc_macros",
41554153
"rustc_middle",
41564154
"rustc_session",
41574155
"rustc_span",
@@ -4295,7 +4293,6 @@ dependencies = [
42954293
"rustc_errors",
42964294
"rustc_feature",
42974295
"rustc_fs_util",
4298-
"rustc_index",
42994296
"rustc_span",
43004297
"rustc_target",
43014298
"serialize",
@@ -4328,7 +4325,6 @@ dependencies = [
43284325
"rustc_ast",
43294326
"rustc_data_structures",
43304327
"rustc_hir",
4331-
"rustc_metadata",
43324328
"rustc_middle",
43334329
"rustc_session",
43344330
"rustc_span",

src/librustc_middle/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ arena = { path = "../libarena" }
1414
bitflags = "1.2.1"
1515
scoped-tls = "1.0"
1616
log = { version = "0.4", features = ["release_max_level_info", "std"] }
17-
rustc-rayon = "0.3.0"
1817
rustc-rayon-core = "0.3.0"
1918
polonius-engine = "0.12.0"
2019
rustc_apfloat = { path = "../librustc_apfloat" }

src/librustc_mir_build/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ rustc_index = { path = "../librustc_index" }
2020
rustc_errors = { path = "../librustc_errors" }
2121
rustc_hir = { path = "../librustc_hir" }
2222
rustc_infer = { path = "../librustc_infer" }
23-
rustc_macros = { path = "../librustc_macros" }
2423
rustc_serialize = { path = "../libserialize", package = "serialize" }
2524
rustc_session = { path = "../librustc_session" }
2625
rustc_span = { path = "../librustc_span" }

src/librustc_session/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ rustc_target = { path = "../librustc_target" }
1717
rustc_serialize = { path = "../libserialize", package = "serialize" }
1818
rustc_data_structures = { path = "../librustc_data_structures" }
1919
rustc_span = { path = "../librustc_span" }
20-
rustc_index = { path = "../librustc_index" }
2120
rustc_fs_util = { path = "../librustc_fs_util" }
2221
num_cpus = "1.0"
2322
rustc_ast = { path = "../librustc_ast" }

src/librustc_symbol_mangling/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ rustc_middle = { path = "../librustc_middle" }
2020
rustc_hir = { path = "../librustc_hir" }
2121
rustc_target = { path = "../librustc_target" }
2222
rustc_data_structures = { path = "../librustc_data_structures" }
23-
rustc_metadata = { path = "../librustc_metadata" }
2423
rustc_session = { path = "../librustc_session" }

0 commit comments

Comments
 (0)