]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/Cargo.toml
Rollup merge of #63055 - Mark-Simulacrum:save-analysis-clean-2, r=Xanewok
[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 log = "0.4"
15 env_logger = { version = "0.5", default-features = false }
16 rustc = { path = "../librustc" }
17 rustc_target = { path = "../librustc_target" }
18 rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
19 rustc_data_structures = { path = "../librustc_data_structures" }
20 errors = { path = "../librustc_errors", package = "rustc_errors" }
21 rustc_metadata = { path = "../librustc_metadata" }
22 rustc_mir = { path = "../librustc_mir" }
23 rustc_save_analysis = { path = "../librustc_save_analysis" }
24 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
25 rustc_interface = { path = "../librustc_interface" }
26 rustc_serialize = { path = "../libserialize", package = "serialize" }
27 syntax = { path = "../libsyntax" }
28 syntax_pos = { path = "../libsyntax_pos" }