]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_mir_transform/Cargo.toml
New upstream version 1.67.1+dfsg1
[rustc.git] / compiler / rustc_mir_transform / Cargo.toml
CommitLineData
1b1a35ee 1[package]
c295e0f8 2name = "rustc_mir_transform"
1b1a35ee 3version = "0.0.0"
c295e0f8 4edition = "2021"
1b1a35ee
XL
5
6[lib]
1b1a35ee
XL
7
8[dependencies]
5e7ed085 9itertools = "0.10.1"
064997fb 10smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
1b1a35ee 11tracing = "0.1"
487cf647 12either = "1"
c295e0f8 13rustc_ast = { path = "../rustc_ast" }
1b1a35ee
XL
14rustc_attr = { path = "../rustc_attr" }
15rustc_data_structures = { path = "../rustc_data_structures" }
16rustc_errors = { path = "../rustc_errors" }
17rustc_hir = { path = "../rustc_hir" }
18rustc_index = { path = "../rustc_index" }
c295e0f8
XL
19rustc_middle = { path = "../rustc_middle" }
20rustc_const_eval = { path = "../rustc_const_eval" }
21rustc_mir_dataflow = { path = "../rustc_mir_dataflow" }
1b1a35ee
XL
22rustc_serialize = { path = "../rustc_serialize" }
23rustc_session = { path = "../rustc_session" }
24rustc_target = { path = "../rustc_target" }
25rustc_trait_selection = { path = "../rustc_trait_selection" }
1b1a35ee 26rustc_span = { path = "../rustc_span" }
fc512014
XL
27
28[dev-dependencies]
c295e0f8 29coverage_test_macros = { path = "src/coverage/test_macros" }