]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/Cargo.toml
Rollup merge of #65763 - ObsidianMinor:diag/65642, r=varkor
[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 log = "0.4"
17 log_settings = "0.1.1"
18 polonius-engine  = "0.10.0"
19 rustc = { path = "../librustc" }
20 rustc_target = { path = "../librustc_target" }
21 rustc_data_structures = { path = "../librustc_data_structures" }
22 rustc_index = { path = "../librustc_index" }
23 rustc_errors = { path = "../librustc_errors" }
24 rustc_lexer = { path = "../librustc_lexer" }
25 rustc_serialize = { path = "../libserialize", package = "serialize" }
26 syntax = { path = "../libsyntax" }
27 syntax_pos = { path = "../libsyntax_pos" }
28 rustc_apfloat = { path = "../librustc_apfloat" }
29 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }