]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir_build/Cargo.toml
update
[rust.git] / src / librustc_mir_build / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_mir_build"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_mir_build"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 arena = { path = "../libarena" }
14 itertools = "0.8"
15 log = "0.4"
16 rustc = { path = "../librustc" }
17 rustc_apfloat = { path = "../librustc_apfloat" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 rustc_index = { path = "../librustc_index" }
20 rustc_errors = { path = "../librustc_errors" }
21 rustc_hir = { path = "../librustc_hir" }
22 rustc_macros = { path = "../librustc_macros" }
23 rustc_serialize = { path = "../libserialize", package = "serialize" }
24 rustc_session = { path = "../librustc_session" }
25 rustc_span = { path = "../librustc_span" }
26 rustc_target = { path = "../librustc_target" }
27 syntax = { path = "../libsyntax" }
28 smallvec = { version = "1.0", features = ["union", "may_dangle"] }