File tree Expand file tree Collapse file tree 11 files changed +2
-24
lines changed Expand file tree Collapse file tree 11 files changed +2
-24
lines changed Original file line number Diff line number Diff line change @@ -3274,7 +3274,6 @@ name = "rustc_ast_lowering"
32743274version = " 0.0.0"
32753275dependencies = [
32763276 " rustc_ast" ,
3277- " rustc_ast_pretty" ,
32783277 " rustc_data_structures" ,
32793278 " rustc_errors" ,
32803279 " rustc_fluent_macro" ,
@@ -3469,7 +3468,6 @@ dependencies = [
34693468 " rustc_macros" ,
34703469 " rustc_metadata" ,
34713470 " rustc_middle" ,
3472- " rustc_monomorphize" ,
34733471 " rustc_query_system" ,
34743472 " rustc_serialize" ,
34753473 " rustc_session" ,
@@ -3745,7 +3743,6 @@ dependencies = [
37453743 " rustc_feature" ,
37463744 " rustc_fluent_macro" ,
37473745 " rustc_hir" ,
3748- " rustc_hir_pretty" ,
37493746 " rustc_index" ,
37503747 " rustc_infer" ,
37513748 " rustc_lint_defs" ,
@@ -3793,7 +3790,6 @@ dependencies = [
37933790 " rustc_middle" ,
37943791 " rustc_session" ,
37953792 " rustc_span" ,
3796- " rustc_target" ,
37973793 " rustc_trait_selection" ,
37983794 " rustc_type_ir" ,
37993795 " smallvec" ,
@@ -3853,9 +3849,7 @@ dependencies = [
38533849 " rustc_index" ,
38543850 " rustc_macros" ,
38553851 " rustc_middle" ,
3856- " rustc_next_trait_solver" ,
38573852 " rustc_span" ,
3858- " rustc_target" ,
38593853 " rustc_type_ir" ,
38603854 " smallvec" ,
38613855 " thin-vec" ,
@@ -3934,7 +3928,6 @@ dependencies = [
39343928 " rustc_feature" ,
39353929 " rustc_fluent_macro" ,
39363930 " rustc_hir" ,
3937- " rustc_hir_pretty" ,
39383931 " rustc_index" ,
39393932 " rustc_infer" ,
39403933 " rustc_macros" ,
@@ -4162,7 +4155,6 @@ dependencies = [
41624155name = " rustc_next_trait_solver"
41634156version = " 0.0.0"
41644157dependencies = [
4165- " bitflags 2.6.0" ,
41664158 " derive-where" ,
41674159 " rustc_ast_ir" ,
41684160 " rustc_data_structures" ,
@@ -4458,9 +4450,7 @@ dependencies = [
44584450 " object 0.36.4" ,
44594451 " rustc_abi" ,
44604452 " rustc_data_structures" ,
4461- " rustc_feature" ,
44624453 " rustc_fs_util" ,
4463- " rustc_index" ,
44644454 " rustc_macros" ,
44654455 " rustc_serialize" ,
44664456 " rustc_span" ,
@@ -4492,8 +4482,6 @@ dependencies = [
44924482 " rustc_middle" ,
44934483 " rustc_next_trait_solver" ,
44944484 " rustc_parse_format" ,
4495- " rustc_query_system" ,
4496- " rustc_serialize" ,
44974485 " rustc_session" ,
44984486 " rustc_span" ,
44994487 " rustc_transmute" ,
Original file line number Diff line number Diff line change 11// We need this feature as it changes `dylib` linking behavior and allows us to link to `rustc_driver`.
22#![ feature( rustc_private) ]
3+ // Several crates are depended upon but unused so that they are present in the sysroot
4+ #![ expect( unused_crate_dependencies) ]
35
46// A note about jemalloc: rustc uses jemalloc when built for CI and
57// distribution. The obvious way to do this is with the `#[global_allocator]`
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ doctest = false
99[dependencies ]
1010# tidy-alphabetical-start
1111rustc_ast = { path = " ../rustc_ast" }
12- rustc_ast_pretty = { path = " ../rustc_ast_pretty" }
1312rustc_data_structures = { path = " ../rustc_data_structures" }
1413rustc_errors = { path = " ../rustc_errors" }
1514rustc_fluent_macro = { path = " ../rustc_fluent_macro" }
Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ rustc_index = { path = "../rustc_index" }
2828rustc_macros = { path = " ../rustc_macros" }
2929rustc_metadata = { path = " ../rustc_metadata" }
3030rustc_middle = { path = " ../rustc_middle" }
31- rustc_monomorphize = { path = " ../rustc_monomorphize" }
3231rustc_query_system = { path = " ../rustc_query_system" }
3332rustc_serialize = { path = " ../rustc_serialize" }
3433rustc_session = { path = " ../rustc_session" }
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ rustc_errors = { path = "../rustc_errors" }
1919rustc_feature = { path = " ../rustc_feature" }
2020rustc_fluent_macro = { path = " ../rustc_fluent_macro" }
2121rustc_hir = { path = " ../rustc_hir" }
22- rustc_hir_pretty = { path = " ../rustc_hir_pretty" }
2322rustc_index = { path = " ../rustc_index" }
2423rustc_infer = { path = " ../rustc_infer" }
2524rustc_lint_defs = { path = " ../rustc_lint_defs" }
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ rustc_macros = { path = "../rustc_macros" }
2323rustc_middle = { path = " ../rustc_middle" }
2424rustc_session = { path = " ../rustc_session" }
2525rustc_span = { path = " ../rustc_span" }
26- rustc_target = { path = " ../rustc_target" }
2726rustc_trait_selection = { path = " ../rustc_trait_selection" }
2827rustc_type_ir = { path = " ../rustc_type_ir" }
2928smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
Original file line number Diff line number Diff line change @@ -16,9 +16,7 @@ rustc_hir = { path = "../rustc_hir" }
1616rustc_index = { path = " ../rustc_index" }
1717rustc_macros = { path = " ../rustc_macros" }
1818rustc_middle = { path = " ../rustc_middle" }
19- rustc_next_trait_solver = { path = " ../rustc_next_trait_solver" }
2019rustc_span = { path = " ../rustc_span" }
21- rustc_target = { path = " ../rustc_target" }
2220rustc_type_ir = { path = " ../rustc_type_ir" }
2321smallvec = { version = " 1.8.1" , features = [" union" , " may_dangle" ] }
2422thin-vec = " 0.2.12"
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ rustc_errors = { path = "../rustc_errors" }
1414rustc_feature = { path = " ../rustc_feature" }
1515rustc_fluent_macro = { path = " ../rustc_fluent_macro" }
1616rustc_hir = { path = " ../rustc_hir" }
17- rustc_hir_pretty = { path = " ../rustc_hir_pretty" }
1817rustc_index = { path = " ../rustc_index" }
1918rustc_infer = { path = " ../rustc_infer" }
2019rustc_macros = { path = " ../rustc_macros" }
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ edition = "2021"
55
66[dependencies ]
77# tidy-alphabetical-start
8- bitflags = " 2.4.1"
98derive-where = " 1.2.7"
109rustc_ast_ir = { path = " ../rustc_ast_ir" , default-features = false }
1110rustc_data_structures = { path = " ../rustc_data_structures" , optional = true }
Original file line number Diff line number Diff line change @@ -8,9 +8,7 @@ edition = "2021"
88bitflags = " 2.4.1"
99rustc_abi = { path = " ../rustc_abi" }
1010rustc_data_structures = { path = " ../rustc_data_structures" }
11- rustc_feature = { path = " ../rustc_feature" }
1211rustc_fs_util = { path = " ../rustc_fs_util" }
13- rustc_index = { path = " ../rustc_index" }
1412rustc_macros = { path = " ../rustc_macros" }
1513rustc_serialize = { path = " ../rustc_serialize" }
1614rustc_span = { path = " ../rustc_span" }
You can’t perform that action at this time.
0 commit comments