]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/Cargo.toml
Rollup merge of #68014 - estebank:unify-e0599, r=cramertj
[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_target = { path = "../librustc_target" }
18 rustc_lint = { path = "../librustc_lint" }
19 rustc_data_structures = { path = "../librustc_data_structures" }
20 errors = { path = "../librustc_errors", package = "rustc_errors" }
21 rustc_feature = { path = "../librustc_feature" }
22 rustc_hir = { path = "../librustc_hir" }
23 rustc_metadata = { path = "../librustc_metadata" }
24 rustc_mir = { path = "../librustc_mir" }
25 rustc_parse = { path = "../librustc_parse" }
26 rustc_plugin_impl = { path = "../librustc_plugin_impl" }
27 rustc_save_analysis = { path = "../librustc_save_analysis" }
28 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
29 rustc_error_codes = { path = "../librustc_error_codes" }
30 rustc_interface = { path = "../librustc_interface" }
31 rustc_serialize = { path = "../libserialize", package = "serialize" }
32 syntax = { path = "../libsyntax" }
33 rustc_span = { path = "../librustc_span" }
34
35 [features]
36 llvm = ['rustc_interface/llvm']