| Age | Commit message (Expand) | Author | Lines |
| 2025-06-27 | Rollup merge of #143084 - RalfJung:const-eval-recursive-static-write, r=oli-obk | Guillaume Gomez | -49/+133 |
| 2025-06-27 | Rollup merge of #143065 - compiler-errors:enum-recovery, r=oli-obk | Guillaume Gomez | -16/+53 |
| 2025-06-27 | Rollup merge of #143060 - xizheyin:simplify-diag, r=oli-obk | Guillaume Gomez | -11/+5 |
| 2025-06-27 | Rollup merge of #143051 - Stypox:tracing-validity, r=RalfJung | Guillaume Gomez | -4/+11 |
| 2025-06-27 | Rollup merge of #143020 - RalfJung:codegen_fn_attrs, r=oli-obk | Guillaume Gomez | -1/+3 |
| 2025-06-27 | Rollup merge of #142818 - JonathanBrouwer:used_new_parser, r=jdonszelmann | Guillaume Gomez | -124/+185 |
| 2025-06-27 | Rollup merge of #142721 - Stypox:tracing-layout-of, r=RalfJung | Guillaume Gomez | -33/+37 |
| 2025-06-27 | Rollup merge of #142671 - davidtwco:no-default-bounds-attr, r=lcnr | Guillaume Gomez | -98/+125 |
| 2025-06-27 | Rollup merge of #142420 - oli-obk:infer-ty-coalescing, r=compiler-errors | Guillaume Gomez | -709/+414 |
| 2025-06-27 | Rollup merge of #142270 - lolbinarycat:rustdoc-search-Results-type, r=Guillau... | Guillaume Gomez | -77/+43 |
| 2025-06-27 | Auto merge of #142893 - Mark-Simulacrum:no-const-collect, r=oli-obk | bors | -11/+8 |
| 2025-06-27 | const-eval: error when initializing a static writes to that static | Ralf Jung | -49/+133 |
| 2025-06-27 | Merge pull request #2480 from xizheyin/argument-sharing-and-isolation | Oli Scherer | -8/+39 |
| 2025-06-27 | rustc_codegen_gcc: Fix clippy::manual_is_multiple_of | Philipp Krones | -2/+3 |
| 2025-06-27 | rustc_codegen_gcc: Fix clippy::manual_is_multiple_of | Philipp Krones | -2/+3 |
| 2025-06-27 | Update poison.rs to fix the typo (sys->sync) | Kurt Heiritz (pseudo) | -1/+1 |
| 2025-06-27 | update internal `send_signal` comment | Deadbeef | -4/+4 |
| 2025-06-27 | Use `.is_multiple_of()` in bootstrap | Samuel Tardieu | -1/+3 |
| 2025-06-27 | broken_links: Fix rustdoc API usage | Philipp Krones | -1/+1 |
| 2025-06-27 | Update Cargo.lock | Philipp Krones | -4/+10 |
| 2025-06-27 | Merge commit 'c5dbd1de07e0407b9687619a868384d6de06253f' into clippy-subtree-u... | Philipp Krones | -843/+3158 |
| 2025-06-27 | Workaround missing none group support in builtin macros | Lukas Wirth | -40/+22 |
| 2025-06-27 | Generate symbols.o for proc-macros too | bjorn3 | -2/+32 |
| 2025-06-27 | Add InterpCx::layout_of with tracing, shadowing LayoutOf | Stypox | -32/+30 |
| 2025-06-27 | Update comments | bjorn3 | -5/+8 |
| 2025-06-27 | Fix typo | xizheyin | -11/+11 |
| 2025-06-27 | Insert checks for enum discriminants when debug assertions are enabled | Bastian Kersting | -3/+909 |
| 2025-06-27 | Split exported_symbols for generic and non-generic symbols | bjorn3 | -37/+86 |
| 2025-06-27 | Add tracing for instantiate_from_frame_and_normalize_erasing_regions | Stypox | -1/+7 |
| 2025-06-27 | Add tracing to validate_operand | Stypox | -0/+7 |
| 2025-06-27 | Report infer ty errors during hir ty lowering | Oli Scherer | -709/+414 |
| 2025-06-27 | Port `#[rustc_layout_scalar_valid_range_start/end]` to the new attribute pars... | Jonathan Brouwer | -69/+146 |
| 2025-06-27 | Auto merge of #142816 - Shourya742:2025-06-21-add-caching-layer-to-bootstrap,... | bors | -283/+393 |
| 2025-06-27 | Port `#[used]` to new attribute parsing infrastructure | Jonathan Brouwer | -124/+185 |
| 2025-06-27 | codegen_fn_attrs: make comment more precise | Ralf Jung | -1/+3 |
| 2025-06-27 | Merge pull request #20110 from ChayimFriedman2/ambiguous-float | Lukas Wirth | -1/+50 |
| 2025-06-27 | tests: add #![rustc_no_implicit_bounds] | David Wood | -89/+109 |
| 2025-06-27 | disable caching for cargo commands | bit-aloo | -3/+6 |
| 2025-06-27 | move execution context inside exec and prune execution context, use command d... | bit-aloo | -353/+345 |
| 2025-06-27 | make DeferredCommand a must use and move mark_as_executed inside finish process | bit-aloo | -1/+4 |
| 2025-06-27 | add caching info on bootstrap command | bit-aloo | -6/+4 |
| 2025-06-27 | refactor deferred command and make it compatible with new commandstate, remov... | bit-aloo | -90/+100 |
| 2025-06-27 | add new command state in execution context | bit-aloo | -0/+11 |
| 2025-06-27 | add do_not_cache method and update the warning on as_command_mut | bit-aloo | -3/+9 |
| 2025-06-27 | use metadata for command cache key spawning directly from command | bit-aloo | -20/+25 |
| 2025-06-27 | add command cache key, move to osstring, add should cache to bootstrap command | bit-aloo | -19/+76 |
| 2025-06-27 | add caching fields inside Bootstrap command | bit-aloo | -1/+26 |
| 2025-06-27 | tests | bendn | -0/+64 |
| 2025-06-27 | Auto merge of #142223 - compiler-errors:perf-wf, r=lcnr | bors | -3/+94 |
| 2025-06-27 | Auto merge of #143074 - compiler-errors:rollup-cv64hdh, r=compiler-errors | bors | -907/+1240 |