mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-28 03:07:24 +03:00
704f2ca172
- Add some missing `tidy-alphabetical-*` markers. - Remove some unnecessary blank lines.
31 lines
712 B
TOML
31 lines
712 B
TOML
[package]
|
|
name = "rustc_transmute"
|
|
version = "0.0.0"
|
|
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 }
|
|
smallvec = "1.8.1"
|
|
tracing = "0.1"
|
|
# tidy-alphabetical-end
|
|
|
|
[dev-dependencies]
|
|
# tidy-alphabetical-start
|
|
itertools = "0.12"
|
|
# tidy-alphabetical-end
|
|
|
|
[features]
|
|
# tidy-alphabetical-start
|
|
rustc = [
|
|
"dep:rustc_abi",
|
|
"dep:rustc_hir",
|
|
"dep:rustc_middle",
|
|
"dep:rustc_span",
|
|
]
|
|
# tidy-alphabetical-end
|