]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/Cargo.toml
Simplify SaveHandler trait
[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 arena = { path = "../libarena" }
14 graphviz = { path = "../libgraphviz" }
15 log = "0.4"
16 env_logger = { version = "0.5", default-features = false }
17 rayon = { version = "0.2.0", package = "rustc-rayon" }
18 rustc = { path = "../librustc" }
19 rustc_target = { path = "../librustc_target" }
20 rustc_ast_borrowck = { path = "../librustc_ast_borrowck" }
21 rustc_data_structures = { path = "../librustc_data_structures" }
22 errors = { path = "../librustc_errors", package = "rustc_errors" }
23 rustc_incremental = { path = "../librustc_incremental" }
24 rustc_lint = { path = "../librustc_lint" }
25 rustc_metadata = { path = "../librustc_metadata" }
26 rustc_mir = { path = "../librustc_mir" }
27 rustc_passes = { path = "../librustc_passes" }
28 rustc_plugin = { path = "../librustc_plugin" }
29 rustc_privacy = { path = "../librustc_privacy" }
30 rustc_resolve = { path = "../librustc_resolve" }
31 rustc_save_analysis = { path = "../librustc_save_analysis" }
32 rustc_traits = { path = "../librustc_traits" }
33 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
34 rustc_typeck = { path = "../librustc_typeck" }
35 rustc_interface = { path = "../librustc_interface" }
36 rustc_serialize = { path = "../libserialize", package = "serialize" }
37 syntax = { path = "../libsyntax" }
38 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
39 syntax_pos = { path = "../libsyntax_pos" }