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