]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_transmute/Cargo.toml
Rollup merge of #106811 - khuey:dwp_extension, r=davidtwco
[rust.git] / compiler / rustc_transmute / Cargo.toml
1 [package]
2 name = "rustc_transmute"
3 version = "0.1.0"
4 edition = "2021"
5
6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8 [dependencies]
9 tracing = "0.1"
10 rustc_data_structures = { path = "../rustc_data_structures"}
11 rustc_hir = { path = "../rustc_hir", optional = true}
12 rustc_infer = { path = "../rustc_infer", optional = true}
13 rustc_macros = { path = "../rustc_macros", optional = true}
14 rustc_middle = { path = "../rustc_middle", optional = true}
15 rustc_span = { path = "../rustc_span", optional = true}
16 rustc_target = { path = "../rustc_target", optional = true}
17
18 [features]
19 rustc = [
20     "rustc_middle",
21     "rustc_hir",
22     "rustc_infer",
23     "rustc_macros",
24     "rustc_span",
25     "rustc_target",
26 ]
27
28 [dev-dependencies]
29 itertools = "0.10.1"