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