]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_mir_build/Cargo.toml
Rollup merge of #107201 - compiler-errors:confusing-async-fn-note, r=estebank
[rust.git] / compiler / rustc_mir_build / Cargo.toml
1 [package]
2 name = "rustc_mir_build"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7
8 [dependencies]
9 rustc_arena = { path = "../rustc_arena" }
10 tracing = "0.1"
11 either = "1"
12 rustc_middle = { path = "../rustc_middle" }
13 rustc_apfloat = { path = "../rustc_apfloat" }
14 rustc_attr = { path = "../rustc_attr" }
15 rustc_data_structures = { path = "../rustc_data_structures" }
16 rustc_index = { path = "../rustc_index" }
17 rustc_errors = { path = "../rustc_errors" }
18 rustc_hir = { path = "../rustc_hir" }
19 rustc_infer = { path = "../rustc_infer" }
20 rustc_macros = { path = "../rustc_macros" }
21 rustc_serialize = { path = "../rustc_serialize" }
22 rustc_session = { path = "../rustc_session" }
23 rustc_span = { path = "../rustc_span" }
24 rustc_target = { path = "../rustc_target" }
25 rustc_trait_selection = { path = "../rustc_trait_selection" }
26 rustc_ast = { path = "../rustc_ast" }
27 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }