]> git.lizzy.rs Git - rust.git/blob - src/librustc_driver/Cargo.toml
Auto merge of #61722 - eddyb:vowel-exclusion-zone, r=oli-obk
[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 scoped-tls = "1.0"
19 rustc = { path = "../librustc" }
20 rustc_allocator = { path = "../librustc_allocator" }
21 rustc_target = { path = "../librustc_target" }
22 rustc_borrowck = { path = "../librustc_borrowck" }
23 rustc_data_structures = { path = "../librustc_data_structures" }
24 errors = { path = "../librustc_errors", package = "rustc_errors" }
25 rustc_incremental = { path = "../librustc_incremental" }
26 rustc_lint = { path = "../librustc_lint" }
27 rustc_metadata = { path = "../librustc_metadata" }
28 rustc_mir = { path = "../librustc_mir" }
29 rustc_passes = { path = "../librustc_passes" }
30 rustc_plugin = { path = "../librustc_plugin" }
31 rustc_privacy = { path = "../librustc_privacy" }
32 rustc_resolve = { path = "../librustc_resolve" }
33 rustc_save_analysis = { path = "../librustc_save_analysis" }
34 rustc_traits = { path = "../librustc_traits" }
35 rustc_codegen_utils = { path = "../librustc_codegen_utils" }
36 rustc_typeck = { path = "../librustc_typeck" }
37 rustc_interface = { path = "../librustc_interface" }
38 serialize = { path = "../libserialize" }
39 syntax = { path = "../libsyntax" }
40 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
41 syntax_ext = { path = "../libsyntax_ext" }
42 syntax_pos = { path = "../libsyntax_pos" }