]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_driver/Cargo.toml
Rollup merge of #90143 - camelid:tidy-2021-followup, r=Mark-Simulacrum
[rust.git] / compiler / rustc_driver / Cargo.toml
1 [package]
2 name = "rustc_driver"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7 crate-type = ["dylib"]
8
9 [dependencies]
10 libc = "0.2"
11 atty = "0.2"
12 tracing = { version = "0.1.28" }
13 tracing-subscriber = { version = "0.2.16", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
14 tracing-tree = "0.1.9"
15 rustc_middle = { path = "../rustc_middle" }
16 rustc_ast_pretty = { path = "../rustc_ast_pretty" }
17 rustc_target = { path = "../rustc_target" }
18 rustc_lint = { path = "../rustc_lint" }
19 rustc_data_structures = { path = "../rustc_data_structures" }
20 rustc_errors = { path = "../rustc_errors" }
21 rustc_feature = { path = "../rustc_feature" }
22 rustc_hir = { path = "../rustc_hir" }
23 rustc_hir_pretty = { path = "../rustc_hir_pretty" }
24 rustc_metadata = { path = "../rustc_metadata" }
25 rustc_const_eval = { path = "../rustc_const_eval" }
26 rustc_parse = { path = "../rustc_parse" }
27 rustc_plugin_impl = { path = "../rustc_plugin_impl" }
28 rustc_save_analysis = { path = "../rustc_save_analysis" }
29 rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
30 rustc_session = { path = "../rustc_session" }
31 rustc_error_codes = { path = "../rustc_error_codes" }
32 rustc_interface = { path = "../rustc_interface" }
33 rustc_serialize = { path = "../rustc_serialize" }
34 rustc_ast = { path = "../rustc_ast" }
35 rustc_span = { path = "../rustc_span" }
36 rustc_typeck = { path = "../rustc_typeck" }
37
38 [target.'cfg(windows)'.dependencies]
39 winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
40
41 [features]
42 llvm = ['rustc_interface/llvm']
43 max_level_info = ['tracing/max_level_info']