This was done in #145740 and #145947. It is causing problems for people using r-a on anything that uses the rustc-dev rustup package, e.g. Miri, clippy. This repository has lots of submodules and subtrees and various different projects are carved out of pieces of it. It seems like `[workspace.dependencies]` will just be more trouble than it's worth.
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
|