]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/Cargo.toml
Auto merge of #67763 - petrochenkov:crateren2, r=Centril
[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_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 rustc_resolve = { path = "../librustc_resolve" }
33 syntax = { path = "../libsyntax" }
34 rustc_span = { path = "../librustc_span" }
35
36 [features]
37 llvm = ['rustc_interface/llvm']