]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/Cargo.toml
Rollup merge of #67875 - dtolnay:hidden, r=GuillaumeGomez
[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 graphviz = { path = "../libgraphviz" }
14 lazy_static = "1.0"
15 log = "0.4"
16 env_logger = { version = "0.7", default-features = false }
17 rustc = { path = "../librustc" }
18 rustc_target = { path = "../librustc_target" }
19 rustc_lint = { path = "../librustc_lint" }
20 rustc_data_structures = { path = "../librustc_data_structures" }
21 errors = { path = "../librustc_errors", package = "rustc_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_utils = { path = "../librustc_codegen_utils" }
30 rustc_error_codes = { path = "../librustc_error_codes" }
31 rustc_interface = { path = "../librustc_interface" }
32 rustc_serialize = { path = "../libserialize", package = "serialize" }
33 rustc_resolve = { path = "../librustc_resolve" }
34 syntax = { path = "../libsyntax" }
35 rustc_span = { path = "../librustc_span" }
36
37 [features]
38 llvm = ['rustc_interface/llvm']