]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_driver/Cargo.toml
New upstream version 1.59.0+dfsg1
[rustc.git] / compiler / rustc_driver / Cargo.toml
CommitLineData
1b1a35ee 1[package]
1b1a35ee
XL
2name = "rustc_driver"
3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
7crate-type = ["dylib"]
8
9[dependencies]
10libc = "0.2"
c295e0f8 11tracing = { version = "0.1.28" }
a2a8927a 12rustc_log = { path = "../rustc_log" }
1b1a35ee
XL
13rustc_middle = { path = "../rustc_middle" }
14rustc_ast_pretty = { path = "../rustc_ast_pretty" }
15rustc_target = { path = "../rustc_target" }
16rustc_lint = { path = "../rustc_lint" }
17rustc_data_structures = { path = "../rustc_data_structures" }
18rustc_errors = { path = "../rustc_errors" }
19rustc_feature = { path = "../rustc_feature" }
20rustc_hir = { path = "../rustc_hir" }
21rustc_hir_pretty = { path = "../rustc_hir_pretty" }
22rustc_metadata = { path = "../rustc_metadata" }
c295e0f8 23rustc_const_eval = { path = "../rustc_const_eval" }
1b1a35ee
XL
24rustc_parse = { path = "../rustc_parse" }
25rustc_plugin_impl = { path = "../rustc_plugin_impl" }
26rustc_save_analysis = { path = "../rustc_save_analysis" }
27rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
28rustc_session = { path = "../rustc_session" }
29rustc_error_codes = { path = "../rustc_error_codes" }
30rustc_interface = { path = "../rustc_interface" }
31rustc_serialize = { path = "../rustc_serialize" }
32rustc_ast = { path = "../rustc_ast" }
33rustc_span = { path = "../rustc_span" }
94222f64 34rustc_typeck = { path = "../rustc_typeck" }
1b1a35ee
XL
35
36[target.'cfg(windows)'.dependencies]
37winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
38
39[features]
40llvm = ['rustc_interface/llvm']
a2a8927a 41max_level_info = ['rustc_log/max_level_info']