]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/Cargo.toml
Auto merge of #69295 - ecstatic-morse:unified-dataflow-generators, r=tmandry
[rust.git] / src / librustc_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 name = "rustc_driver"
9 path = "lib.rs"
10 crate-type = ["dylib"]
11
12 [dependencies]
13 lazy_static = "1.0"
14 log = "0.4"
15 env_logger = { version = "0.7", default-features = false }
16 rustc = { path = "../librustc" }
17 rustc_ast_pretty = { path = "../librustc_ast_pretty" }
18 rustc_target = { path = "../librustc_target" }
19 rustc_lint = { path = "../librustc_lint" }
20 rustc_data_structures = { path = "../librustc_data_structures" }
21 rustc_errors = { path = "../librustc_errors" }
22 rustc_feature = { path = "../librustc_feature" }
23 rustc_hir = { path = "../librustc_hir" }
24 rustc_metadata = { path = "../librustc_metadata" }
25 rustc_mir = { path = "../librustc_mir" }
26 rustc_parse = { path = "../librustc_parse" }
27 rustc_plugin_impl = { path = "../librustc_plugin_impl" }
28 rustc_save_analysis = { path = "../librustc_save_analysis" }
29 rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
30 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
31 rustc_error_codes = { path = "../librustc_error_codes" }
32 rustc_interface = { path = "../librustc_interface" }
33 rustc_serialize = { path = "../libserialize", package = "serialize" }
34 rustc_ast = { path = "../librustc_ast" }
35 rustc_span = { path = "../librustc_span" }
36
37 [target.'cfg(windows)'.dependencies]
38 winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
39
40 [features]
41 llvm = ['rustc_interface/llvm']