]> git.proxmox.com Git - rustc.git/blame - src/librustc_mir_build/Cargo.toml
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_mir_build / Cargo.toml
CommitLineData
dfeec247
XL
1[package]
2authors = ["The Rust Project Developers"]
3name = "rustc_mir_build"
4version = "0.0.0"
5edition = "2018"
6
7[lib]
8name = "rustc_mir_build"
9path = "lib.rs"
10doctest = false
11
12[dependencies]
13arena = { path = "../libarena" }
dfeec247 14log = "0.4"
ba9703b0 15rustc_middle = { path = "../librustc_middle" }
dfeec247 16rustc_apfloat = { path = "../librustc_apfloat" }
74b04a01 17rustc_attr = { path = "../librustc_attr" }
dfeec247
XL
18rustc_data_structures = { path = "../librustc_data_structures" }
19rustc_index = { path = "../librustc_index" }
20rustc_errors = { path = "../librustc_errors" }
21rustc_hir = { path = "../librustc_hir" }
74b04a01 22rustc_infer = { path = "../librustc_infer" }
dfeec247
XL
23rustc_macros = { path = "../librustc_macros" }
24rustc_serialize = { path = "../libserialize", package = "serialize" }
25rustc_session = { path = "../librustc_session" }
26rustc_span = { path = "../librustc_span" }
27rustc_target = { path = "../librustc_target" }
ba9703b0 28rustc_trait_selection = { path = "../librustc_trait_selection" }
74b04a01 29rustc_ast = { path = "../librustc_ast" }
dfeec247 30smallvec = { version = "1.0", features = ["union", "may_dangle"] }