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
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-28 15:18:07 +00:00
|
|
|
tracing = { version = "0.1.35" }
|
2021-06-03 15:45:09 +00:00
|
|
|
serde_json = "1.0.59"
|
2022-01-04 00:32:52 +00:00
|
|
|
rustc_log = { path = "../rustc_log" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
|
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
|
|
|
rustc_target = { path = "../rustc_target" }
|
|
|
|
rustc_lint = { path = "../rustc_lint" }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_errors = { path = "../rustc_errors" }
|
|
|
|
rustc_feature = { path = "../rustc_feature" }
|
|
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
|
|
rustc_hir_pretty = { path = "../rustc_hir_pretty" }
|
2022-08-22 21:43:09 +00:00
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2020-08-28 03:58:48 +00:00
|
|
|
rustc_metadata = { path = "../rustc_metadata" }
|
|
|
|
rustc_parse = { path = "../rustc_parse" }
|
|
|
|
rustc_plugin_impl = { path = "../rustc_plugin_impl" }
|
|
|
|
rustc_save_analysis = { path = "../rustc_save_analysis" }
|
|
|
|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
|
|
|
|
rustc_session = { path = "../rustc_session" }
|
|
|
|
rustc_error_codes = { path = "../rustc_error_codes" }
|
|
|
|
rustc_interface = { path = "../rustc_interface" }
|
|
|
|
rustc_ast = { path = "../rustc_ast" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
2022-09-26 11:00:29 +00:00
|
|
|
rustc_hir_analysis = { path = "../rustc_hir_analysis" }
|
2020-08-28 03:58:48 +00:00
|
|
|
|
2022-06-13 18:50:44 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
2020-08-28 03:58:48 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
llvm = ['rustc_interface/llvm']
|
2022-01-04 00:32:52 +00:00
|
|
|
max_level_info = ['rustc_log/max_level_info']
|
2022-02-11 20:25:14 +00:00
|
|
|
rustc_use_parallel_compiler = ['rustc_data_structures/rustc_use_parallel_compiler', 'rustc_interface/rustc_use_parallel_compiler',
|
|
|
|
'rustc_middle/rustc_use_parallel_compiler']
|