]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/Cargo.toml
Merge branch 'master' into bare-metal-cortex-a
[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 either = "1.5.0"
14 dot = { path = "../libgraphviz", package = "graphviz" }
15 itertools = "0.8"
16 log = "0.4"
17 log_settings = "0.1.1"
18 polonius-engine = "0.11.0"
19 rustc = { path = "../librustc" }
20 rustc_data_structures = { path = "../librustc_data_structures" }
21 rustc_errors = { path = "../librustc_errors" }
22 rustc_hir = { path = "../librustc_hir" }
23 rustc_index = { path = "../librustc_index" }
24 rustc_lexer = { path = "../librustc_lexer" }
25 rustc_macros = { path = "../librustc_macros" }
26 rustc_serialize = { path = "../libserialize", package = "serialize" }
27 rustc_target = { path = "../librustc_target" }
28 syntax = { path = "../libsyntax" }
29 rustc_span = { path = "../librustc_span" }
30 rustc_apfloat = { path = "../librustc_apfloat" }
31 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
32 rustc_error_codes = { path = "../librustc_error_codes" }