]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_driver/Cargo.toml
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / compiler / rustc_driver / Cargo.toml
CommitLineData
1b1a35ee
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_driver"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8crate-type = ["dylib"]
9
10[dependencies]
11libc = "0.2"
5869c6ff 12atty = "0.2"
6a06907d
XL
13tracing = { version = "0.1.25" }
14tracing-subscriber = { version = "0.2.16", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
15tracing-tree = "0.1.9"
1b1a35ee
XL
16rustc_middle = { path = "../rustc_middle" }
17rustc_ast_pretty = { path = "../rustc_ast_pretty" }
18rustc_target = { path = "../rustc_target" }
19rustc_lint = { path = "../rustc_lint" }
20rustc_data_structures = { path = "../rustc_data_structures" }
21rustc_errors = { path = "../rustc_errors" }
22rustc_feature = { path = "../rustc_feature" }
23rustc_hir = { path = "../rustc_hir" }
24rustc_hir_pretty = { path = "../rustc_hir_pretty" }
25rustc_metadata = { path = "../rustc_metadata" }
26rustc_mir = { path = "../rustc_mir" }
27rustc_parse = { path = "../rustc_parse" }
28rustc_plugin_impl = { path = "../rustc_plugin_impl" }
29rustc_save_analysis = { path = "../rustc_save_analysis" }
30rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
31rustc_session = { path = "../rustc_session" }
32rustc_error_codes = { path = "../rustc_error_codes" }
33rustc_interface = { path = "../rustc_interface" }
34rustc_serialize = { path = "../rustc_serialize" }
35rustc_ast = { path = "../rustc_ast" }
36rustc_span = { path = "../rustc_span" }
6a06907d
XL
37rustc_mir_build = { path = "../rustc_mir_build" }
38rustc_typeck = { path = "../rustc_typeck" }
1b1a35ee
XL
39
40[target.'cfg(windows)'.dependencies]
41winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
42
43[features]
44llvm = ['rustc_interface/llvm']
45max_level_info = ['tracing/max_level_info']