
By naming them in `[workspace.lints.rust]` in the top-level `Cargo.toml`, and then making all `compiler/` crates inherit them with `[lints] workspace = true`. (I omitted `rustc_codegen_{cranelift,gcc}`, because they're a bit different.) The advantages of this over the current approach: - It uses a standard Cargo feature, rather than special handling in bootstrap. So, easier to understand, and less likely to get accidentally broken in the future. - It works for proc macro crates. It's a shame it doesn't work for rustc-specific lints, as the comments explain.
27 lines
641 B
TOML
27 lines
641 B
TOML
[package]
|
|
name = "rustc_target"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
bitflags = "2.4.1"
|
|
rustc_abi = { path = "../rustc_abi" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_fs_util = { path = "../rustc_fs_util" }
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
serde_json = "1.0.59"
|
|
tracing = "0.1"
|
|
# tidy-alphabetical-end
|
|
|
|
[dependencies.object]
|
|
# tidy-alphabetical-start
|
|
default-features = false
|
|
features = ["elf", "macho"]
|
|
version = "0.36.2"
|
|
# tidy-alphabetical-end
|
|
|
|
[lints]
|
|
workspace = true
|