2021-07-03 16:18:13 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_transmute"
|
2023-10-18 21:55:15 +00:00
|
|
|
version = "0.0.0"
|
2021-07-03 16:18:13 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2024-10-28 00:21:23 +00:00
|
|
|
rustc_abi = { path = "../rustc_abi", optional = true }
|
2024-02-24 22:22:28 +00:00
|
|
|
rustc_ast_ir = { path = "../rustc_ast_ir", optional = true }
|
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_hir = { path = "../rustc_hir", optional = true }
|
|
|
|
rustc_infer = { path = "../rustc_infer", optional = true }
|
|
|
|
rustc_macros = { path = "../rustc_macros", optional = true }
|
|
|
|
rustc_middle = { path = "../rustc_middle", optional = true }
|
|
|
|
rustc_span = { path = "../rustc_span", optional = true }
|
2023-10-20 02:37:29 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|
2021-07-03 16:18:13 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
rustc = [
|
2024-10-28 00:21:23 +00:00
|
|
|
"dep:rustc_abi",
|
|
|
|
"dep:rustc_ast_ir",
|
2024-07-15 16:40:06 +00:00
|
|
|
"dep:rustc_hir",
|
|
|
|
"dep:rustc_infer",
|
|
|
|
"dep:rustc_macros",
|
|
|
|
"dep:rustc_middle",
|
|
|
|
"dep:rustc_span",
|
2021-07-03 16:18:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-start
|
2024-02-23 13:37:47 +00:00
|
|
|
itertools = "0.12"
|
2023-10-20 02:37:29 +00:00
|
|
|
# tidy-alphabetical-end
|