rust/compiler/rustc_transmute/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
643 B
TOML
Raw Normal View History

[package]
name = "rustc_transmute"
2023-10-18 21:55:15 +00:00
version = "0.0.0"
2025-02-20 18:37:58 +00:00
edition = "2024"
[dependencies]
# tidy-alphabetical-start
rustc_abi = { path = "../rustc_abi", optional = true }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_hir = { path = "../rustc_hir", optional = true }
rustc_middle = { path = "../rustc_middle", optional = true }
rustc_span = { path = "../rustc_span", optional = true }
tracing = "0.1"
# tidy-alphabetical-end
[features]
rustc = [
"dep:rustc_abi",
2024-07-15 12:40:06 -04:00
"dep:rustc_hir",
"dep:rustc_middle",
"dep:rustc_span",
]
[dev-dependencies]
# tidy-alphabetical-start
itertools = "0.12"
# tidy-alphabetical-end