]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/Cargo.toml
Rollup merge of #67875 - dtolnay:hidden, r=GuillaumeGomez
[rust.git] / src / librustc_mir / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_mir"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_mir"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 arena = { path = "../libarena" }
14 either = "1.5.0"
15 dot = { path = "../libgraphviz", package = "graphviz" }
16 itertools = "0.8"
17 log = "0.4"
18 log_settings = "0.1.1"
19 polonius-engine = "0.11.0"
20 rustc = { path = "../librustc" }
21 rustc_data_structures = { path = "../librustc_data_structures" }
22 rustc_errors = { path = "../librustc_errors" }
23 rustc_hir = { path = "../librustc_hir" }
24 rustc_index = { path = "../librustc_index" }
25 rustc_lexer = { path = "../librustc_lexer" }
26 rustc_macros = { path = "../librustc_macros" }
27 rustc_serialize = { path = "../libserialize", package = "serialize" }
28 rustc_target = { path = "../librustc_target" }
29 syntax = { path = "../libsyntax" }
30 rustc_span = { path = "../librustc_span" }
31 rustc_apfloat = { path = "../librustc_apfloat" }
32 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
33 rustc_error_codes = { path = "../librustc_error_codes" }