]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/Cargo.toml
Rollup merge of #61750 - tmandry:fix-install, r=Mark-Simulacrum
[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 crate-type = ["dylib"]
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.7.0"
19 rustc = { path = "../librustc" }
20 rustc_target = { path = "../librustc_target" }
21 rustc_data_structures = { path = "../librustc_data_structures" }
22 rustc_errors = { path = "../librustc_errors" }
23 serialize = { path = "../libserialize" }
24 syntax = { path = "../libsyntax" }
25 syntax_pos = { path = "../libsyntax_pos" }
26 byteorder = { version = "1.1", features = ["i128"] }
27 rustc_apfloat = { path = "../librustc_apfloat" }
28 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }