about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2025-03-06 11:53:30 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2025-03-08 08:41:09 +1100
commitbeba32cebb4fb2ef8f02c4fc898a9d31f1b03c61 (patch)
treeca3ac2faf7f66cbae78a3b32071dfec19a7436cd /compiler/rustc_codegen_ssa
parenta8eeb4b53b9ea3b8e67e5c6526fe04ba8e93431f (diff)
downloadrust-beba32cebb4fb2ef8f02c4fc898a9d31f1b03c61.tar.gz
rust-beba32cebb4fb2ef8f02c4fc898a9d31f1b03c61.zip
Specify rust lints for `compiler/` crates via Cargo.
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.
Diffstat (limited to 'compiler/rustc_codegen_ssa')
-rw-r--r--compiler/rustc_codegen_ssa/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_ssa/Cargo.toml b/compiler/rustc_codegen_ssa/Cargo.toml
index 1346efcb87c..c00be0e9926 100644
--- a/compiler/rustc_codegen_ssa/Cargo.toml
+++ b/compiler/rustc_codegen_ssa/Cargo.toml
@@ -63,3 +63,6 @@ features = ["read_core", "elf", "macho", "pe", "xcoff", "unaligned", "archive",
 [target.'cfg(windows)'.dependencies.windows]
 version = "0.59.0"
 features = ["Win32_Globalization"]
+
+[lints]
+workspace = true