]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_transmute/Cargo.toml
New upstream version 1.64.0+dfsg1
[rustc.git] / compiler / rustc_transmute / Cargo.toml
CommitLineData
064997fb
FG
1[package]
2name = "rustc_transmute"
3version = "0.1.0"
4edition = "2021"
5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8[dependencies]
9tracing = "0.1"
10rustc_data_structures = { path = "../rustc_data_structures", optional = true}
11rustc_infer = { path = "../rustc_infer", optional = true}
12rustc_macros = { path = "../rustc_macros", optional = true}
13rustc_middle = { path = "../rustc_middle", optional = true}
14rustc_span = { path = "../rustc_span", optional = true}
15rustc_target = { path = "../rustc_target", optional = true}
16
17[features]
18rustc = [
19 "rustc_middle",
20 "rustc_data_structures",
21 "rustc_infer",
22 "rustc_macros",
23 "rustc_span",
24 "rustc_target",
25]
26
27[dev-dependencies]
28itertools = "0.10.1"