]> git.proxmox.com Git - rustc.git/blame - src/librustc_mir/Cargo.toml
New upstream version 1.41.1+dfsg1
[rustc.git] / src / librustc_mir / Cargo.toml
CommitLineData
7453a54e
SL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_mir"
4version = "0.0.0"
9fa01778 5edition = "2018"
7453a54e
SL
6
7[lib]
8name = "rustc_mir"
9path = "lib.rs"
416331ca 10doctest = false
7453a54e
SL
11
12[dependencies]
0531ce1d 13arena = { path = "../libarena" }
94b46f34 14either = "1.5.0"
9fa01778 15dot = { path = "../libgraphviz", package = "graphviz" }
60c5eb7d 16itertools = "0.8"
ff7c6d11
XL
17log = "0.4"
18log_settings = "0.1.1"
60c5eb7d 19polonius-engine = "0.11.0"
7453a54e 20rustc = { path = "../librustc" }
83c7162d 21rustc_target = { path = "../librustc_target" }
7453a54e 22rustc_data_structures = { path = "../librustc_data_structures" }
e74abb32 23rustc_index = { path = "../librustc_index" }
3b2f2976 24rustc_errors = { path = "../librustc_errors" }
e1599b0c 25rustc_lexer = { path = "../librustc_lexer" }
60c5eb7d 26rustc_macros = { path = "../librustc_macros" }
416331ca 27rustc_serialize = { path = "../libserialize", package = "serialize" }
7453a54e 28syntax = { path = "../libsyntax" }
3157f602 29syntax_pos = { path = "../libsyntax_pos" }
ff7c6d11 30rustc_apfloat = { path = "../librustc_apfloat" }
60c5eb7d
XL
31smallvec = { version = "1.0", features = ["union", "may_dangle"] }
32rustc_error_codes = { path = "../librustc_error_codes" }