Skip to content

Impls and impl items inherit dead_code lint level of the corresponding traits and trait items - #144113

Merged
bors merged 1 commit into
rust-lang:mainfrom
mu001999-contrib:dead-code/allow-trait
Jan 6, 2026
Merged

Impls and impl items inherit dead_code lint level of the corresponding traits and trait items#144113
bors merged 1 commit into
rust-lang:mainfrom
mu001999-contrib:dead-code/allow-trait

Conversation

@mu001999

@mu001999mu001999 commented Jul 18, 2025

Copy link
Copy Markdown
Member

https://github.com/rust-lang/rust/blob/master/compiler/rustc_passes/src/dead.rs#L360-L361 won't insert assoc items into the live set, so that impl items cannot be marked live.

This PR lets impls and impl items can inherit lint levels of the corresponding traits and trait items.

Fixes#144060

r? @petrochenkov

@rustbotrustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Jul 18, 2025

@compiler-errorscompiler-errors left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This behavior seems really non-local and pretty broad. #[allow(dead_code)] on a trait definition suppresses all dead code warnings in all impls with this change?

Comment threadtests/ui/lint/dead-code/allow-unused-trait.rs
@mu001999
mu001999force-pushed the dead-code/allow-trait branch from 7eba1f1 to 7a9e2e2CompareJuly 19, 2025 01:34
@mu001999

Copy link
Copy Markdown
MemberAuthor

#[allow(dead_code)] on a trait definition suppresses all dead code warnings in all impls with this change?

@compiler-errors yes, and I think this makes sense. We would have only one trait definition but many impls, letting #[allow(dead_code)] on traits propagate to impls is convenient. Otherwise we need to add #[allow(dead_code)] also on each impls which use unused items.

@petrochenkov

Copy link
Copy Markdown
Contributor

r? @compiler-errors

@petrochenkov

Copy link
Copy Markdown
Contributor

Hmm, why did rustbot assign it to me again?
I'll just block this on #144863 now.
@rustbot blocked

@rustbotrustbot added S-blocked Status: Blocked on something else such as an RFC or other implementation work. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 4, 2025
@mu001999

Copy link
Copy Markdown
MemberAuthor

Hmm, why did rustbot assign it to me again?

I tried reassigning, but rustbot didn’t respond after waiting a while, so I deleted the comment. 😂

@cjgillotcjgillot self-assigned this Aug 4, 2025
@petrochenkovpetrochenkov removed their assignment Aug 5, 2025
@bors

bors commented Aug 5, 2025

Copy link
Copy Markdown
Collaborator

☔ The latest upstream changes (presumably #144863) made this pull request unmergeable. Please resolve the merge conflicts.

@mu001999
mu001999force-pushed the dead-code/allow-trait branch from 7a9e2e2 to c1be949CompareAugust 7, 2025 16:34
@mu001999

Copy link
Copy Markdown
MemberAuthor

@rustbot ready

@rustbotrustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-blocked Status: Blocked on something else such as an RFC or other implementation work. labels Aug 10, 2025
@tgross35

Copy link
Copy Markdown
Member

@cjgillot gentle ping for a review here

@wesleywiserwesleywiser added the S-blocked Status: Blocked on something else such as an RFC or other implementation work. label Sep 25, 2025
@wesleywiser

Copy link
Copy Markdown
Member

Nominated the issue for lang team discussion, let's see what they think before merging.

@mu001999

mu001999 commented Sep 25, 2025

Copy link
Copy Markdown
MemberAuthor

oh, I missed the non-local in the note from @compiler-errors

and if the trait is non-local, the dead-code lint level won't spread to the local impls. cc @wesleywiser

we only care about local traits, see https://github.com/rust-lang/rust/pull/144113/files#diff-719b4f36bbbf3b3bf48683429408f5d27e5633f70c1144a93554bd536d5bf655R786

@traviscrosstraviscross added T-lang Relevant to the language team I-lang-nominated Nominated for discussion during a lang team meeting. I-lang-radar Items that are on lang's radar and will need eventual work or consideration. labels Oct 8, 2025
@ZalatharZalathar mentioned this pull request Jan 6, 2026
bors added a commit that referenced this pull request Jan 6, 2026
Rollup of 8 pull requests
Successful merges:
- #144113 (Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items)
- #149880 (rustc_codegen_llvm: update alignment for double on AIX)
- #150668 (Unix implementation for stdio set/take/replace)
- #150670 (THIR pattern building: Move all `thir::Pat` creation into `rustc_mir_build::thir::pattern`)
- #150695 (MGCA: pretty printing for struct expressions and tuple calls )
- #150698 (Improve comment clarity in candidate_may_shadow)
- #150706 (Update wasm-component-ld)
- #150710 (Update libc dependency of std)
r? `@ghost`
`@rustbot` modify labels: rollup
Zalathar added a commit to Zalathar/rust that referenced this pull request Jan 6, 2026
…rait, r=jdonszelmann
Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items
https://github.com/rust-lang/rust/blob/master/compiler/rustc_passes/src/dead.rs#L360-L361 won't insert assoc items into the live set, so that impl items cannot be marked live.
This PR lets impls and impl items can inherit lint levels of the corresponding traits and trait items.
Fixesrust-lang#144060
r? ``@petrochenkov``
@ZalatharZalathar mentioned this pull request Jan 6, 2026
bors added a commit that referenced this pull request Jan 6, 2026
Rollup of 8 pull requests
Successful merges:
- #144113 (Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items)
- #149880 (rustc_codegen_llvm: update alignment for double on AIX)
- #150412 (use PIDFD_GET_INFO ioctl when available)
- #150668 (Unix implementation for stdio set/take/replace)
- #150670 (THIR pattern building: Move all `thir::Pat` creation into `rustc_mir_build::thir::pattern`)
- #150695 (MGCA: pretty printing for struct expressions and tuple calls )
- #150698 (Improve comment clarity in candidate_may_shadow)
- #150706 (Update wasm-component-ld)
r? `@ghost`
`@rustbot` modify labels: rollup
JonathanBrouwer added a commit to JonathanBrouwer/rust that referenced this pull request Jan 6, 2026
…rait, r=jdonszelmann
Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items
https://github.com/rust-lang/rust/blob/master/compiler/rustc_passes/src/dead.rs#L360-L361 won't insert assoc items into the live set, so that impl items cannot be marked live.
This PR lets impls and impl items can inherit lint levels of the corresponding traits and trait items.
Fixesrust-lang#144060
r? ```@petrochenkov```
bors added a commit that referenced this pull request Jan 6, 2026
…uwer
Rollup of 11 pull requests
Successful merges:
- #144113 (Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items)
- #148339 (naked functions: emit `.private_extern` on macos)
- #149880 (rustc_codegen_llvm: update alignment for double on AIX)
- #150122 (Refactor function names of `rustc_ast_lowering`)
- #150412 (use PIDFD_GET_INFO ioctl when available)
- #150670 (THIR pattern building: Move all `thir::Pat` creation into `rustc_mir_build::thir::pattern`)
- #150695 (MGCA: pretty printing for struct expressions and tuple calls )
- #150698 (Improve comment clarity in candidate_may_shadow)
- #150706 (Update wasm-component-ld)
- #150707 (Fix ICE when transmute Assume field is invalid)
- #150708 (Enable merge queue in new bors)
r? `@ghost`
`@rustbot` modify labels: rollup
bors added a commit that referenced this pull request Jan 6, 2026
Rollup of 11 pull requests
Successful merges:
- #144113 (Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items)
- #148339 (naked functions: emit `.private_extern` on macos)
- #149880 (rustc_codegen_llvm: update alignment for double on AIX)
- #150122 (Refactor function names of `rustc_ast_lowering`)
- #150412 (use PIDFD_GET_INFO ioctl when available)
- #150670 (THIR pattern building: Move all `thir::Pat` creation into `rustc_mir_build::thir::pattern`)
- #150695 (MGCA: pretty printing for struct expressions and tuple calls )
- #150698 (Improve comment clarity in candidate_may_shadow)
- #150706 (Update wasm-component-ld)
- #150707 (Fix ICE when transmute Assume field is invalid)
- #150708 (Enable merge queue in new bors)
r? `@ghost`
`@rustbot` modify labels: rollup
bors added a commit that referenced this pull request Jan 6, 2026
…uwer
Rollup of 10 pull requests
Successful merges:
- #144113 (Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items)
- #149880 (rustc_codegen_llvm: update alignment for double on AIX)
- #150122 (Refactor function names of `rustc_ast_lowering`)
- #150412 (use PIDFD_GET_INFO ioctl when available)
- #150670 (THIR pattern building: Move all `thir::Pat` creation into `rustc_mir_build::thir::pattern`)
- #150695 (MGCA: pretty printing for struct expressions and tuple calls )
- #150698 (Improve comment clarity in candidate_may_shadow)
- #150706 (Update wasm-component-ld)
- #150707 (Fix ICE when transmute Assume field is invalid)
- #150708 (Enable merge queue in new bors)
r? `@ghost`
`@rustbot` modify labels: rollup
@bors
bors merged commit 8b1bf8a into rust-lang:mainJan 6, 2026
11 checks passed
@rustbotrustbot added this to the 1.94.0 milestone Jan 6, 2026
rust-timer added a commit that referenced this pull request Jan 6, 2026
Rollup merge of #144113 - mu001999-contrib:dead-code/allow-trait, r=jdonszelmann
Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items
https://github.com/rust-lang/rust/blob/master/compiler/rustc_passes/src/dead.rs#L360-L361 won't insert assoc items into the live set, so that impl items cannot be marked live.
This PR lets impls and impl items can inherit lint levels of the corresponding traits and trait items.
Fixes#144060
r? ````@petrochenkov````
@JonathanBrouwer

Copy link
Copy Markdown
Member

Candidate for the perf regression in #150726
@rust-timer build bb5b182

@rust-timer

This comment has been minimized.

@rust-timer

Copy link
Copy Markdown
Collaborator

Finished benchmarking commit (bb5b182): comparison URL.

Overall result: ❌✅ regressions and improvements - please read the text below

Benchmarking this pull request means it may be perf-sensitive – we'll automatically label it not fit for rolling up. You can override this, but we strongly advise not to, due to possible changes in compiler perf.

Next Steps: If you can justify the regressions found in this try perf run, please do so in sufficient writing along with @rustbot label: +perf-regression-triaged. If not, please fix the regressions and do another perf run. If its results are neutral or positive, the label will be automatically removed.

@bors rollup=never
@rustbot label: -S-waiting-on-perf +perf-regression

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

meanrangecount
Regressions ❌
(primary)
0.4%[0.2%, 0.8%]13
Regressions ❌
(secondary)
0.3%[0.3%, 0.3%]3
Improvements ✅
(primary)
--0
Improvements ✅
(secondary)
-0.6%[-0.6%, -0.5%]3
All ❌✅ (primary)0.4%[0.2%, 0.8%]13

Max RSS (memory usage)

Results (primary -0.6%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

meanrangecount
Regressions ❌
(primary)
--0
Regressions ❌
(secondary)
--0
Improvements ✅
(primary)
-0.6%[-0.6%, -0.6%]1
Improvements ✅
(secondary)
--0
All ❌✅ (primary)-0.6%[-0.6%, -0.6%]1

Cycles

Results (secondary 4.1%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

meanrangecount
Regressions ❌
(primary)
--0
Regressions ❌
(secondary)
4.1%[3.2%, 5.0%]2
Improvements ✅
(primary)
--0
Improvements ✅
(secondary)
--0
All ❌✅ (primary)--0

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 473.921s -> 475.634s (0.36%)
Artifact size: 390.82 MiB -> 390.83 MiB (0.00%)

@rustbotrustbot added the perf-regression Performance regression. label Jan 6, 2026
@JonathanBrouwer

Copy link
Copy Markdown
Member

Yeah seems like this PR is the cause sadly, what action should we take to resolve this?

@Mark-Simulacrum

Copy link
Copy Markdown
Member

I'm going to mark as triaged. This only significantly affected bitmaps in the non-incremental scenarios, and the change looks fairly minimal to me -- not clear that it could be made any better -- so I don't think there's much to be done here given this is effectively a new feature.

@Mark-SimulacrumMark-Simulacrum added perf-regression-triaged The performance regression has been triaged. relnotes Marks issues that should be documented in the release notes of the next release. labels Jan 12, 2026
@mu001999
mu001999 deleted the dead-code/allow-trait branch January 12, 2026 14:00
wip-sync pushed a commit to NetBSD/pkgsrc-wip that referenced this pull request Mar 7, 2026
Pkgsrc changes:
* Update version & checksums.
* Adapt patches to new vendored crates.
This has so far just been verified to build on NetBSD/amd64.
Upstream changes relative to 1.93.1:
Version 1.94.0 (2026-03-05)
==========================
Language
--------
- [Impls and impl items inherit `dead_code` lint level of the
corresponding traits and trait items]
(rust-lang/rust#144113)
- [Stabilize additional 29 RISC-V target features including large
portions of the RVA22U64 / RVA23U64 profiles]
(rust-lang/rust#145948)
- [Add warn-by-default `unused_visibilities` lint for visibility
on `const _` declarations]
(rust-lang/rust#147136)
- [Update to Unicode 17]
(rust-lang/rust#148321)
- [Avoid incorrect lifetime errors for closures]
(rust-lang/rust#148329)
Platform Support
----------------
- [Add `riscv64im-unknown-none-elf` as a tier 3 target]
(rust-lang/rust#148790)
Refer to Rust's [platform support page][platform-support-doc]
for more information on Rust's tiered platform support.
[platform-support-doc]: https://doc.rust-lang.org/rustc/platform-support.html
Libraries
---------
- [Relax `T: Ord` bound for some `BinaryHeap<T>` methods.]
(rust-lang/rust#149408)
Stabilized APIs
---------------
- [`<[T]>::array_windows`]
(https://doc.rust-lang.org/stable/std/primitive.slice.html#method.array_windows)
- [`<[T]>::element_offset`]
(https://doc.rust-lang.org/stable/std/primitive.slice.html#method.element_offset)
- [`LazyCell::get`]
(https://doc.rust-lang.org/stable/std/cell/struct.LazyCell.html#method.get)
- [`LazyCell::get_mut`]
(https://doc.rust-lang.org/stable/std/cell/struct.LazyCell.html#method.get_mut)
- [`LazyCell::force_mut`]
(https://doc.rust-lang.org/stable/std/cell/struct.LazyCell.html#method.force_mut)
- [`LazyLock::get`]
(https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html#method.get)
- [`LazyLock::get_mut`]
(https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html#method.get_mut)
- [`LazyLock::force_mut`]
(https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html#method.force_mut)
- [`impl TryFrom<char> for usize`]
(https://doc.rust-lang.org/stable/std/convert/trait.TryFrom.html#impl-TryFrom%3Cchar%3E-for-usize)
- [`std::iter::Peekable::next_if_map`]
(https://doc.rust-lang.org/stable/std/iter/struct.Peekable.html#method.next_if_map)
- [`std::iter::Peekable::next_if_map_mut`]
(https://doc.rust-lang.org/stable/std/iter/struct.Peekable.html#method.next_if_map_mut)
- [x86 `avx512fp16` intrinsics]
(rust-lang/rust#127213)
(excluding those that depend directly on the unstable `f16` type)
- [AArch64 NEON fp16 intrinsics]
(rust-lang/rust#136306)
(excluding those that depend directly on the unstable `f16` type)
- [`f32::consts::EULER_GAMMA`]
(https://doc.rust-lang.org/stable/std/f32/consts/constant.EULER_GAMMA.html)
- [`f64::consts::EULER_GAMMA`]
(https://doc.rust-lang.org/stable/std/f64/consts/constant.EULER_GAMMA.html)
- [`f32::consts::GOLDEN_RATIO`]
(https://doc.rust-lang.org/stable/std/f32/consts/constant.GOLDEN_RATIO.html)
- [`f64::consts::GOLDEN_RATIO`]
(https://doc.rust-lang.org/stable/std/f64/consts/constant.GOLDEN_RATIO.html)
These previously stable APIs are now stable in const contexts:
- [`f32::mul_add`]
(https://doc.rust-lang.org/stable/std/primitive.f32.html#method.mul_add)
- [`f64::mul_add`]
(https://doc.rust-lang.org/stable/std/primitive.f64.html#method.mul_add)
Cargo
-----
- Stabilize the config include key. The top-level include config
key allows loading additional config files, enabling better
organization, sharing, and management of Cargo configurations
across projects and environments. [docs]
(https://doc.rust-lang.org/nightly/cargo/reference/config.html#including-extra-configuration-files)
[#16284] (rust-lang/cargo#16284)
- Stabilize the pubtime field in registry index. This records when
a crate version was published and enables time-based dependency
resolution in the future. Note that crates.io will gradually backfill
existing packages when a new version is published. Not all crates
have pubtime yet. [#16369]
(rust-lang/cargo#16369) [#16372]
(rust-lang/cargo#16372)
- Cargo now parses [TOML v1.1](https://toml.io/en/v1.1.0) for
manifests and configuration files. Note that using these features
in Cargo.toml will raise your development MSRV, but the published
manifest remains compatible with older parsers. [#16415]
(rust-lang/cargo#16415)
- [Make `CARGO_BIN_EXE_<crate>` available at runtime ]
(rust-lang/cargo#16421)
Compatibility Notes
-------------------
- [Forbid freely casting lifetime bounds of `dyn`-types]
(rust-lang/rust#136776)
- [Make closure capturing have consistent and correct behaviour around patterns]
(rust-lang/rust#138961)
Some finer details of how precise closure captures get affected
by pattern matching have been changed. In some cases, this can
cause a non-move closure that was previously capturing an entire
variable by move, to now capture only part of that variable by
move, and other parts by borrow. This can cause the borrow checker
to complain where it previously didn't, or cause `Drop` to run
at a different point in time.
- [Standard library macros are now imported via prelude, not via injected `
#[macro_use]`] (rust-lang/rust#139493)
This will raise an error if macros of the same name are glob
imported. For example if a crate defines their own `matches`
macro and then glob imports that, it's now ambiguous whether the
custom or standard library `matches` is meant and an explicit
import of the name is required to resolve the ambiguity. One
exception is `core::panic` and `std::panic`, if their import is
ambiguous a new warning ([`ambiguous_panic_imports`]
(rust-lang/rust#147319)) is raised.
This may raise a new warning ([`ambiguous_panic_imports`]
(rust-lang/rust#147319)) on `#![no_std]`
code glob importing the std crate. Both `core::panic!` and
`std::panic!` are then in scope and which is used is ambiguous.
- [Don't strip shebang in expression-context `include!(…)`s]
(rust-lang/rust#146377)
This can cause previously working includes to no longer compile
if they included files which started with a shebang.
- [Ambiguous glob reexports are now also visible cross-crate]
(rust-lang/rust#147984)
This unifies behavior between local and cross-crate errors on
these exports, which may introduce new ambiguity errors.
- [Don't normalize where-clauses before checking well-formedness]
(rust-lang/rust#148477)
- [Introduce a future compatibility warning on codegen attributes
on body-free trait methods]
(rust-lang/rust#148756) These attributes
currently have no effect in this position.
- [On Windows `std::time::SystemTime::checked_sub_duration` will
return `None` for times before the Windows epoch (1/1/1601)]
(rust-lang/rust#148825)
- [Lifetime identifiers such as `'a` are now NFC normalized]
(rust-lang/rust#149192).
- [Overhaul filename handling for cross-compiler consistency]
(rust-lang/rust#149709)
Any paths emitted by compiler now always respect the relative-ness
of the paths and `--remap-path-prefix` given originally. One
side-effect of this change is that paths emitted for local crates
in Cargo (path dependencies and workspace members) are no longer
absolute but relative when emitted as part of a diagnostic in a
downstream crate.
Internal Changes
----------------
These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.
- [Switch to `annotate-snippets` for error emission]
(rust-lang/rust#150032)
This should preserve mostly the same outputs in rustc error messages.
tmeijn pushed a commit to tmeijn/dotfiles that referenced this pull request Mar 11, 2026
This MR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [rust](https://github.com/rust-lang/rust) | minor | `1.93.1` → `1.94.0` |
MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot).
**Proposed changes to behavior should be submitted there as MRs.**
---
### Release Notes
<details>
<summary>rust-lang/rust (rust)</summary>
### [`v1.94.0`](https://github.com/rust-lang/rust/blob/HEAD/RELEASES.md#Version-1940-2026-03-05)
[Compare Source](rust-lang/rust@1.93.1...1.94.0)
\==========================
<a id="1.94.0-Language"></a>
## Language
- [Impls and impl items inherit `dead_code` lint level of the corresponding traits and trait items](rust-lang/rust#144113)
- [Stabilize additional 29 RISC-V target features including large portions of the RVA22U64 / RVA23U64 profiles](rust-lang/rust#145948)
- [Add warn-by-default `unused_visibilities` lint for visibility on `const _` declarations](rust-lang/rust#147136)
- [Update to Unicode 17](rust-lang/rust#148321)
- [Avoid incorrect lifetime errors for closures](rust-lang/rust#148329)
<a id="1.94.0-Platform-Support"></a>
## Platform Support
- [Add `riscv64im-unknown-none-elf` as a tier 3 target](rust-lang/rust#148790)
Refer to Rust's [platform support page][platform-support-doc]
for more information on Rust's tiered platform support.
[platform-support-doc]: https://doc.rust-lang.org/rustc/platform-support.html
<a id="1.94.0-Libraries"></a>
## Libraries
- [Relax `T: Ord` bound for some `BinaryHeap<T>` methods.](rust-lang/rust#149408)
<a id="1.94.0-Stabilized-APIs"></a>
## Stabilized APIs
- [`<[T]>::array_windows`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.array_windows)
- [`<[T]>::element_offset`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.element_offset)
- [`LazyCell::get`](https://doc.rust-lang.org/stable/std/cell/struct.LazyCell.html#method.get)
- [`LazyCell::get_mut`](https://doc.rust-lang.org/stable/std/cell/struct.LazyCell.html#method.get_mut)
- [`LazyCell::force_mut`](https://doc.rust-lang.org/stable/std/cell/struct.LazyCell.html#method.force_mut)
- [`LazyLock::get`](https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html#method.get)
- [`LazyLock::get_mut`](https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html#method.get_mut)
- [`LazyLock::force_mut`](https://doc.rust-lang.org/stable/std/sync/struct.LazyLock.html#method.force_mut)
- [`impl TryFrom<char> for usize`](https://doc.rust-lang.org/stable/std/convert/trait.TryFrom.html#impl-TryFrom%3Cchar%3E-for-usize)
- [`std::iter::Peekable::next_if_map`](https://doc.rust-lang.org/stable/std/iter/struct.Peekable.html#method.next_if_map)
- [`std::iter::Peekable::next_if_map_mut`](https://doc.rust-lang.org/stable/std/iter/struct.Peekable.html#method.next_if_map_mut)
- [x86 `avx512fp16` intrinsics](rust-lang/rust#127213)
(excluding those that depend directly on the unstable `f16` type)
- [AArch64 NEON fp16 intrinsics](rust-lang/rust#136306)
(excluding those that depend directly on the unstable `f16` type)
- [`f32::consts::EULER_GAMMA`](https://doc.rust-lang.org/stable/std/f32/consts/constant.EULER_GAMMA.html)
- [`f64::consts::EULER_GAMMA`](https://doc.rust-lang.org/stable/std/f64/consts/constant.EULER_GAMMA.html)
- [`f32::consts::GOLDEN_RATIO`](https://doc.rust-lang.org/stable/std/f32/consts/constant.GOLDEN_RATIO.html)
- [`f64::consts::GOLDEN_RATIO`](https://doc.rust-lang.org/stable/std/f64/consts/constant.GOLDEN_RATIO.html)
These previously stable APIs are now stable in const contexts:
- [`f32::mul_add`](https://doc.rust-lang.org/stable/std/primitive.f32.html#method.mul_add)
- [`f64::mul_add`](https://doc.rust-lang.org/stable/std/primitive.f64.html#method.mul_add)
<a id="1.94.0-Cargo"></a>
## Cargo
- Stabilize the config include key. The top-level include config key allows loading additional config files, enabling better organization, sharing, and management of Cargo configurations across projects and environments. [docs](https://doc.rust-lang.org/nightly/cargo/reference/config.html#including-extra-configuration-files) [#&#8203;16284](rust-lang/cargo#16284)
- Stabilize the pubtime field in registry index. This records when a crate version was published and enables time-based dependency resolution in the future. Note that crates.io will gradually backfill existing packages when a new version is published. Not all crates have pubtime yet. [#&#8203;16369](rust-lang/cargo#16369) [#&#8203;16372](rust-lang/cargo#16372)
- Cargo now parses [TOML v1.1](https://toml.io/en/v1.1.0) for manifests and configuration files. Note that using these features in Cargo.toml will raise your development MSRV, but the published manifest remains compatible with older parsers. [#&#8203;16415](rust-lang/cargo#16415)
- [Make `CARGO_BIN_EXE_<crate>` available at runtime ](rust-lang/cargo#16421)
<a id="1.94.0-Compatibility-Notes"></a>
## Compatibility Notes
- [Forbid freely casting lifetime bounds of `dyn`-types](rust-lang/rust#136776)
- [Make closure capturing have consistent and correct behaviour around patterns](rust-lang/rust#138961)
Some finer details of how precise closure captures get affected by pattern matching have been changed. In some cases, this can cause a non-move closure that was previously capturing an entire variable by move, to now capture only part of that variable by move, and other parts by borrow. This can cause the borrow checker to complain where it previously didn't, or cause `Drop` to run at a different point in time.
- [Standard library macros are now imported via prelude, not via injected `#[macro_use]`](rust-lang/rust#139493)
This will raise an error if macros of the same name are glob imported.
For example if a crate defines their own `matches` macro and then glob imports that,
it's now ambiguous whether the custom or standard library `matches` is meant and
an explicit import of the name is required to resolve the ambiguity.
One exception is `core::panic` and `std::panic`, if their import is ambiguous
a new warning ([`ambiguous_panic_imports`](rust-lang/rust#147319)) is raised.
This may raise a new warning ([`ambiguous_panic_imports`](rust-lang/rust#147319)) on `#![no_std]` code glob importing the std crate.
Both `core::panic!` and `std::panic!` are then in scope and which is used is ambiguous.
- [Don't strip shebang in expression-context `include!(…)`s](rust-lang/rust#146377)
This can cause previously working includes to no longer compile if they included files which started with a shebang.
- [Ambiguous glob reexports are now also visible cross-crate](rust-lang/rust#147984)
This unifies behavior between local and cross-crate errors on these exports, which may introduce new ambiguity errors.
- [Don't normalize where-clauses before checking well-formedness](rust-lang/rust#148477)
- [Introduce a future compatibility warning on codegen attributes on body-free trait methods](rust-lang/rust#148756)
These attributes currently have no effect in this position.
- [On Windows `std::time::SystemTime::checked_sub_duration` will return `None` for times before the Windows epoch (1/1/1601)](rust-lang/rust#148825)
- [Lifetime identifiers such as `'a` are now NFC normalized](rust-lang/rust#149192).
- [Overhaul filename handling for cross-compiler consistency](rust-lang/rust#149709)
Any paths emitted by compiler now always respect the relative-ness of the paths and `--remap-path-prefix` given originally.
One side-effect of this change is that paths emitted for local crates in Cargo (path dependencies and workspace members) are no longer absolute but relative when emitted as part of a diagnostic in a downstream crate.
<a id="1.94.0-Internal-Changes"></a>
## Internal Changes
These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.
- [Switch to `annotate-snippets` for error emission](rust-lang/rust#150032)
This should preserve mostly the same outputs in rustc error messages.
</details>
---
### Configuration
📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 **Ignore**: Close this MR and you won't be reminded about this update again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box
---
This MR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41NS4zIiwidXBkYXRlZEluVmVyIjoiNDMuNTUuMyIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiUmVub3ZhdGUgQm90IiwiYXV0b21hdGlvbjpib3QtYXV0aG9yZWQiLCJkZXBlbmRlbmN5LXR5cGU6Om1pbm9yIl19-->
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

disposition-mergeThis issue / PR is in PFCP or FCP with a disposition to merge it.finished-final-comment-periodThe final comment period is finished for this PR / Issue.I-lang-radarItems that are on lang's radar and will need eventual work or consideration.needs-fcpThis change is insta-stable, or significant enough to need a team FCP to proceed.perf-regressionPerformance regression.perf-regression-triagedThe performance regression has been triaged.relnotesMarks issues that should be documented in the release notes of the next release.S-waiting-on-borsStatus: Waiting on bors to run and complete tests. Bors will change the label on completion.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.T-langRelevant to the language teamto-announceAnnounce this issue on triage meeting

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Lint regression: dead_code ignores #[allow(dead_code)] on traits

18 participants

@mu001999@petrochenkov@bors@tgross35@wesleywiser@joshtriplett@rust-rfcbot@tmandry@traviscross@nikomatsakis@mati865@jdonszelmann@rustbot@JonathanBrouwer@rust-timer@Mark-Simulacrum@compiler-errors@cjgillot