2020-08-28 03:58:48 +00:00
|
|
|
[package]
|
2023-02-02 06:17:46 +00:00
|
|
|
name = "rustc_driver_impl"
|
2020-08-28 03:58:48 +00:00
|
|
|
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-06 06:28:36 +00:00
|
|
|
# tidy-alphabetical-start
|
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_ast_lowering = { path = "../rustc_ast_lowering" }
|
|
|
|
rustc_ast_passes = { path = "../rustc_ast_passes" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_attr = { path = "../rustc_attr" }
|
|
|
|
rustc_borrowck = { path = "../rustc_borrowck" }
|
|
|
|
rustc_builtin_macros = { path = "../rustc_builtin_macros" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_const_eval = { path = "../rustc_const_eval" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_expand = { path = "../rustc_expand" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
2023-04-16 12:33:00 +00:00
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_hir_analysis = { path = "../rustc_hir_analysis" }
|
|
|
|
rustc_hir_pretty = { path = "../rustc_hir_pretty" }
|
|
|
|
rustc_hir_typeck = { path = "../rustc_hir_typeck" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_incremental = { path = "../rustc_incremental" }
|
2022-09-02 18:17:20 +00:00
|
|
|
rustc_index = { path = "../rustc_index" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_infer = { path = "../rustc_infer" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_interface = { path = "../rustc_interface" }
|
|
|
|
rustc_lint = { path = "../rustc_lint" }
|
|
|
|
rustc_log = { path = "../rustc_log" }
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_mir_build = { path = "../rustc_mir_build" }
|
|
|
|
rustc_mir_dataflow = { path = "../rustc_mir_dataflow" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_mir_transform = { path = "../rustc_mir_transform" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_monomorphize = { path = "../rustc_monomorphize" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_parse = { path = "../rustc_parse" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_passes = { path = "../rustc_passes" }
|
2023-12-10 19:42:30 +00:00
|
|
|
rustc_pattern_analysis = { path = "../rustc_pattern_analysis" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_privacy = { path = "../rustc_privacy" }
|
|
|
|
rustc_query_system = { path = "../rustc_query_system" }
|
|
|
|
rustc_resolve = { path = "../rustc_resolve" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_session = { path = "../rustc_session" }
|
2024-05-03 05:55:35 +00:00
|
|
|
rustc_smir = { path = "../rustc_smir" }
|
2023-11-09 09:11:41 +00:00
|
|
|
rustc_span = { path = "../rustc_span" }
|
2023-10-06 06:28:36 +00:00
|
|
|
rustc_target = { path = "../rustc_target" }
|
2022-10-13 09:13:02 +00:00
|
|
|
rustc_trait_selection = { path = "../rustc_trait_selection" }
|
|
|
|
rustc_ty_utils = { path = "../rustc_ty_utils" }
|
2023-10-06 06:28:36 +00:00
|
|
|
serde_json = "1.0.59"
|
2023-12-06 18:25:13 +00:00
|
|
|
shlex = "1.0"
|
2024-11-02 12:20:11 +00:00
|
|
|
time = { version = "0.3.36", default-features = false, features = ["alloc", "formatting", "macros"] }
|
2023-10-06 06:28:36 +00:00
|
|
|
tracing = { version = "0.1.35" }
|
|
|
|
# tidy-alphabetical-end
|
2020-08-28 03:58:48 +00:00
|
|
|
|
2022-06-13 18:50:44 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2022-06-13 18:50:44 +00:00
|
|
|
libc = "0.2"
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-end
|
2022-06-13 18:50:44 +00:00
|
|
|
|
2023-01-15 18:43:15 +00:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2024-09-24 13:14:49 +00:00
|
|
|
version = "0.57.0"
|
2023-01-15 18:43:15 +00:00
|
|
|
features = [
|
|
|
|
"Win32_System_Diagnostics_Debug",
|
|
|
|
]
|
2020-08-28 03:58:48 +00:00
|
|
|
|
2024-04-11 11:22:11 +00:00
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
|
|
|
# tidy-alphabetical-start
|
|
|
|
ctrlc = "3.4.4"
|
|
|
|
# tidy-alphabetical-end
|
|
|
|
|
2020-08-28 03:58:48 +00:00
|
|
|
[features]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2020-08-28 03:58:48 +00:00
|
|
|
llvm = ['rustc_interface/llvm']
|
2022-01-04 00:32:52 +00:00
|
|
|
max_level_info = ['rustc_log/max_level_info']
|
2022-09-02 18:17:20 +00:00
|
|
|
rustc_randomized_layouts = [
|
|
|
|
'rustc_index/rustc_randomized_layouts',
|
|
|
|
'rustc_middle/rustc_randomized_layouts'
|
|
|
|
]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-end
|