]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/Cargo.toml
Move some const-eval `build-pass` tests to `check-pass`
[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.12.0"
19 rustc = { path = "../librustc" }
20 rustc_ast_pretty = { path = "../librustc_ast_pretty" }
21 rustc_attr = { path = "../librustc_attr" }
22 rustc_data_structures = { path = "../librustc_data_structures" }
23 rustc_errors = { path = "../librustc_errors" }
24 rustc_hir = { path = "../librustc_hir" }
25 rustc_index = { path = "../librustc_index" }
26 rustc_infer = { path = "../librustc_infer" }
27 rustc_lexer = { path = "../librustc_lexer" }
28 rustc_macros = { path = "../librustc_macros" }
29 rustc_serialize = { path = "../libserialize", package = "serialize" }
30 rustc_target = { path = "../librustc_target" }
31 rustc_ast = { path = "../librustc_ast" }
32 rustc_span = { path = "../librustc_span" }
33 rustc_apfloat = { path = "../librustc_apfloat" }
34 smallvec = { version = "1.0", features = ["union", "may_dangle"] }