]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_driver_impl/Cargo.toml
Auto merge of #106180 - RalfJung:dereferenceable-generators, r=nbdd0121
[rust.git] / compiler / rustc_driver_impl / Cargo.toml
1 [package]
2 name = "rustc_driver_impl"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7
8 [dependencies]
9 tracing = { version = "0.1.35" }
10 serde_json = "1.0.59"
11 rustc_log = { path = "../rustc_log" }
12 rustc_middle = { path = "../rustc_middle" }
13 rustc_ast_pretty = { path = "../rustc_ast_pretty" }
14 rustc_target = { path = "../rustc_target" }
15 rustc_lint = { path = "../rustc_lint" }
16 rustc_data_structures = { path = "../rustc_data_structures" }
17 rustc_errors = { path = "../rustc_errors" }
18 rustc_feature = { path = "../rustc_feature" }
19 rustc_hir = { path = "../rustc_hir" }
20 rustc_hir_pretty = { path = "../rustc_hir_pretty" }
21 rustc_macros = { path = "../rustc_macros" }
22 rustc_metadata = { path = "../rustc_metadata" }
23 rustc_parse = { path = "../rustc_parse" }
24 rustc_plugin_impl = { path = "../rustc_plugin_impl" }
25 rustc_save_analysis = { path = "../rustc_save_analysis" }
26 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
27 rustc_session = { path = "../rustc_session" }
28 rustc_error_codes = { path = "../rustc_error_codes" }
29 rustc_interface = { path = "../rustc_interface" }
30 rustc_ast = { path = "../rustc_ast" }
31 rustc_span = { path = "../rustc_span" }
32 rustc_hir_analysis = { path = "../rustc_hir_analysis" }
33
34 [target.'cfg(unix)'.dependencies]
35 libc = "0.2"
36
37 [target.'cfg(windows)'.dependencies]
38 winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
39
40 [features]
41 llvm = ['rustc_interface/llvm']
42 max_level_info = ['rustc_log/max_level_info']
43 rustc_use_parallel_compiler = ['rustc_data_structures/rustc_use_parallel_compiler', 'rustc_interface/rustc_use_parallel_compiler',
44     'rustc_middle/rustc_use_parallel_compiler']