
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.
24 lines
635 B
TOML
24 lines
635 B
TOML
[package]
|
|
name = "rustc_error_messages"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
fluent-bundle = "0.15.2"
|
|
fluent-syntax = "0.11"
|
|
icu_list = "1.2"
|
|
icu_locid = "1.2"
|
|
icu_provider_adapters = "1.2"
|
|
intl-memoizer = "0.5.1"
|
|
rustc_baked_icu_data = { path = "../rustc_baked_icu_data" }
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
rustc_macros = { path = "../rustc_macros" }
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
tracing = "0.1"
|
|
unic-langid = { version = "0.9.0", features = ["macros"] }
|
|
# tidy-alphabetical-end
|
|
|
|
[lints]
|
|
workspace = true
|