2020-08-28 03:58:48 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_interface"
|
|
|
|
version = "0.0.0"
|
2021-09-19 16:49:55 +00:00
|
|
|
edition = "2021"
|
2020-08-28 03:58:48 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2023-03-25 01:12:13 +00:00
|
|
|
rustc-rayon = { version = "0.5.0", optional = true }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc-rayon-core = { version = "0.5.0", optional = true }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_ast_lowering = { path = "../rustc_ast_lowering" }
|
|
|
|
rustc_ast_passes = { path = "../rustc_ast_passes" }
|
2024-05-03 19:14:42 +00:00
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
2020-12-30 17:48:40 +00:00
|
|
|
rustc_borrowck = { path = "../rustc_borrowck" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_builtin_macros = { path = "../rustc_builtin_macros" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_codegen_llvm = { path = "../rustc_codegen_llvm", optional = true }
|
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
|
|
|
rustc_const_eval = { path = "../rustc_const_eval" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_expand = { path = "../rustc_expand" }
|
2023-08-09 12:28:00 +00:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-04-16 12:33:00 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2023-03-16 20:42:31 +00:00
|
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_hir_analysis = { path = "../rustc_hir_analysis" }
|
|
|
|
rustc_hir_typeck = { path = "../rustc_hir_typeck" }
|
|
|
|
rustc_incremental = { path = "../rustc_incremental" }
|
|
|
|
rustc_lint = { path = "../rustc_lint" }
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_mir_build = { path = "../rustc_mir_build" }
|
2021-01-01 00:53:25 +00:00
|
|
|
rustc_mir_transform = { path = "../rustc_mir_transform" }
|
2021-01-02 13:42:15 +00:00
|
|
|
rustc_monomorphize = { path = "../rustc_monomorphize" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_parse = { path = "../rustc_parse" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_passes = { path = "../rustc_passes" }
|
|
|
|
rustc_privacy = { path = "../rustc_privacy" }
|
2021-01-19 19:40:16 +00:00
|
|
|
rustc_query_impl = { path = "../rustc_query_impl" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_resolve = { path = "../rustc_resolve" }
|
2023-10-28 01:26:43 +00:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
|
|
|
rustc_symbol_mangling = { path = "../rustc_symbol_mangling" }
|
2023-01-10 12:57:42 +00:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|
2023-10-20 02:37:29 +00:00
|
|
|
rustc_traits = { path = "../rustc_traits" }
|
2020-11-19 20:32:37 +00:00
|
|
|
rustc_ty_utils = { path = "../rustc_ty_utils" }
|
2023-10-20 02:37:29 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|
2020-08-28 03:58:48 +00:00
|
|
|
|
|
|
|
[features]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2024-07-15 16:40:06 +00:00
|
|
|
llvm = ['dep:rustc_codegen_llvm']
|
|
|
|
rustc_use_parallel_compiler = [
|
|
|
|
'dep:rustc-rayon',
|
|
|
|
'dep:rustc-rayon-core',
|
|
|
|
'rustc_query_impl/rustc_use_parallel_compiler',
|
|
|
|
'rustc_errors/rustc_use_parallel_compiler'
|
|
|
|
]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-end
|