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.
21 lines
445 B
TOML
21 lines
445 B
TOML
[package]
|
|
name = "rustc_serialize"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
indexmap = "2.0.0"
|
|
rustc_hashes = { path = "../rustc_hashes" }
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
|
thin-vec = "0.2.12"
|
|
# tidy-alphabetical-end
|
|
|
|
[dev-dependencies]
|
|
# tidy-alphabetical-start
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
tempfile = "3.2"
|
|
# tidy-alphabetical-end
|
|
|
|
[lints]
|
|
workspace = true
|