@@ -6,53 +6,55 @@ edition = "2021"
6
6
[lib ]
7
7
8
8
[dependencies ]
9
- time = { version = " 0.3" , default-features = false , features = [" formatting" , ] }
10
- tracing = { version = " 0.1.35" }
11
- serde_json = " 1.0.59"
12
- rustc_log = { path = " ../rustc_log" }
9
+ # tidy-alphabetical-start
10
+ rustc_ast = { path = " ../rustc_ast" }
13
11
rustc_ast_lowering = { path = " ../rustc_ast_lowering" }
14
12
rustc_ast_passes = { path = " ../rustc_ast_passes" }
13
+ rustc_ast_pretty = { path = " ../rustc_ast_pretty" }
15
14
rustc_attr = { path = " ../rustc_attr" }
16
15
rustc_borrowck = { path = " ../rustc_borrowck" }
17
16
rustc_builtin_macros = { path = " ../rustc_builtin_macros" }
17
+ rustc_codegen_ssa = { path = " ../rustc_codegen_ssa" }
18
18
rustc_const_eval = { path = " ../rustc_const_eval" }
19
+ rustc_data_structures = { path = " ../rustc_data_structures" }
20
+ rustc_error_codes = { path = " ../rustc_error_codes" }
19
21
rustc_error_messages = { path = " ../rustc_error_messages" }
22
+ rustc_errors = { path = " ../rustc_errors" }
20
23
rustc_expand = { path = " ../rustc_expand" }
21
- rustc_hir_typeck = { path = " ../rustc_hir_typeck " }
24
+ rustc_feature = { path = " ../rustc_feature " }
22
25
rustc_fluent_macro = { path = " ../rustc_fluent_macro" }
26
+ rustc_hir = { path = " ../rustc_hir" }
27
+ rustc_hir_analysis = { path = " ../rustc_hir_analysis" }
28
+ rustc_hir_pretty = { path = " ../rustc_hir_pretty" }
29
+ rustc_hir_typeck = { path = " ../rustc_hir_typeck" }
23
30
rustc_incremental = { path = " ../rustc_incremental" }
24
31
rustc_infer = { path = " ../rustc_infer" }
32
+ rustc_interface = { path = " ../rustc_interface" }
33
+ rustc_lint = { path = " ../rustc_lint" }
34
+ rustc_log = { path = " ../rustc_log" }
35
+ rustc_macros = { path = " ../rustc_macros" }
36
+ rustc_metadata = { path = " ../rustc_metadata" }
37
+ rustc_middle = { path = " ../rustc_middle" }
25
38
rustc_mir_build = { path = " ../rustc_mir_build" }
26
39
rustc_mir_dataflow = { path = " ../rustc_mir_dataflow" }
40
+ rustc_mir_transform = { path = " ../rustc_mir_transform" }
27
41
rustc_monomorphize = { path = " ../rustc_monomorphize" }
42
+ rustc_parse = { path = " ../rustc_parse" }
28
43
rustc_passes = { path = " ../rustc_passes" }
44
+ rustc_plugin_impl = { path = " ../rustc_plugin_impl" }
29
45
rustc_privacy = { path = " ../rustc_privacy" }
30
46
rustc_query_system = { path = " ../rustc_query_system" }
31
47
rustc_resolve = { path = " ../rustc_resolve" }
48
+ rustc_session = { path = " ../rustc_session" }
49
+ rustc_span = { path = " ../rustc_span" }
32
50
rustc_symbol_mangling = { path = " ../rustc_symbol_mangling" }
51
+ rustc_target = { path = " ../rustc_target" }
33
52
rustc_trait_selection = { path = " ../rustc_trait_selection" }
34
53
rustc_ty_utils = { path = " ../rustc_ty_utils" }
35
- rustc_middle = { path = " ../rustc_middle" }
36
- rustc_ast_pretty = { path = " ../rustc_ast_pretty" }
37
- rustc_target = { path = " ../rustc_target" }
38
- rustc_lint = { path = " ../rustc_lint" }
39
- rustc_data_structures = { path = " ../rustc_data_structures" }
40
- rustc_errors = { path = " ../rustc_errors" }
41
- rustc_feature = { path = " ../rustc_feature" }
42
- rustc_hir = { path = " ../rustc_hir" }
43
- rustc_hir_pretty = { path = " ../rustc_hir_pretty" }
44
- rustc_macros = { path = " ../rustc_macros" }
45
- rustc_metadata = { path = " ../rustc_metadata" }
46
- rustc_parse = { path = " ../rustc_parse" }
47
- rustc_plugin_impl = { path = " ../rustc_plugin_impl" }
48
- rustc_codegen_ssa = { path = " ../rustc_codegen_ssa" }
49
- rustc_session = { path = " ../rustc_session" }
50
- rustc_error_codes = { path = " ../rustc_error_codes" }
51
- rustc_interface = { path = " ../rustc_interface" }
52
- rustc_ast = { path = " ../rustc_ast" }
53
- rustc_span = { path = " ../rustc_span" }
54
- rustc_hir_analysis = { path = " ../rustc_hir_analysis" }
55
- rustc_mir_transform = { path = " ../rustc_mir_transform" }
54
+ serde_json = " 1.0.59"
55
+ time = { version = " 0.3" , default-features = false , features = [" formatting" , ] }
56
+ tracing = { version = " 0.1.35" }
57
+ # tidy-alphabetical-end
56
58
57
59
[target .'cfg(unix)' .dependencies ]
58
60
libc = " 0.2"
0 commit comments