| Age | Commit message (Expand) | Author | Lines |
| 2025-08-13 | Implement `clippy::CodegenGcc` as a separate step | Jakub Beránek | -7/+81 |
| 2025-08-13 | Merge pull request #20329 from jackh726/next-trait-solver-querify | Lukas Wirth | -1309/+19140 |
| 2025-08-13 | Prepare standard library for checking rustc in `prepare_compiler_for_check` | Jakub Beránek | -27/+23 |
| 2025-08-13 | Merge ref '1553adfe6884' from rust-lang/rust | The Miri Cronjob Bot | -6344/+11129 |
| 2025-08-13 | Rollup merge of #145325 - clarfonthey:cast-init, r=scottmcm | Jakub Beránek | -3/+74 |
| 2025-08-13 | Rollup merge of #145320 - Kobzol:fix-cranelift-codegen-dist, r=shepmaster | Jakub Beránek | -1/+5 |
| 2025-08-13 | Rollup merge of #145308 - giltho:dangling-doc, r=scottmcm | Jakub Beránek | -20/+20 |
| 2025-08-13 | Rollup merge of #145303 - m-ou-se:payload-as-str-doc, r=jhpratt | Jakub Beránek | -0/+2 |
| 2025-08-13 | Rollup merge of #145289 - rejected-l:master, r=Kobzol | Jakub Beránek | -7/+7 |
| 2025-08-13 | Rollup merge of #145274 - compiler-errors:unused-must-use, r=fmease | Jakub Beránek | -198/+358 |
| 2025-08-13 | Rollup merge of #145269 - epage:test-env, r=jhpratt | Jakub Beránek | -13/+12 |
| 2025-08-13 | Rollup merge of #144870 - Kivooeo:file_prefix-stabilize, r=tgross35 | Jakub Beránek | -1/+1 |
| 2025-08-13 | Rollup merge of #144870 - Kivooeo:file_prefix-stabilize, r=tgross35 | Jakub Beránek | -10/+3 |
| 2025-08-13 | Rollup merge of #144642 - lolbinarycat:editorconfig-no-run-make, r=lcnr | Jakub Beránek | -1/+10 |
| 2025-08-13 | Rollup merge of #144519 - clarfonthey:const-system-time, r=jhpratt | Jakub Beránek | -68/+166 |
| 2025-08-13 | Rollup merge of #143467 - ChaiTRex:ascii_char_is_ascii, r=tgross35 | Jakub Beránek | -1/+611 |
| 2025-08-13 | Prepare for merging from rust-lang/rust | The Miri Cronjob Bot | -1/+1 |
| 2025-08-13 | Bump slab from 0.4.10 to 0.4.11 in /clippy_test_deps | dependabot[bot] | -2/+2 |
| 2025-08-13 | Auto merge of #145093 - nikic:dead-on-return, r=nnethercote | bors | -6/+55 |
| 2025-08-13 | Make std use the edition 2024 prelude | Tim (Theemathas) Chirananthavat | -1/+1 |
| 2025-08-13 | Only import the item in "Unqualify method call" if needed | Chayim Refael Friedman | -1/+122 |
| 2025-08-13 | Fix pgo tests | ywxt | -5/+27 |
| 2025-08-13 | Fix parallel rustc not being reproducible due to unstable sorting of items. | ywxt | -83/+107 |
| 2025-08-13 | fix tail calls to `#[track_caller]` functions | Waffle Lapkin | -8/+134 |
| 2025-08-12 | Auto merge of #145295 - Kobzol:unify-stages, r=jieyouxu | bors | -266/+241 |
| 2025-08-12 | Add cast_init and cast_uninit methods for pointers | ltdk | -3/+74 |
| 2025-08-12 | fix `unnecessary_semicolon`: don't lint on stmts with attrs (#15466) | dswij | -1/+30 |
| 2025-08-12 | Remove unused must_use | Michael Goulet | -198/+358 |
| 2025-08-12 | Allow cross-compiling the Cranelift dist component | Jakub Beránek | -1/+5 |
| 2025-08-12 | Constify SystemTime methods | ltdk | -68/+166 |
| 2025-08-12 | misc: use `Ty::is_unit` | Ada Alakbarova | -1/+1 |
| 2025-08-12 | get `DefId` from `AdtDef` instead of `expect`ing | Ada Alakbarova | -5/+1 |
| 2025-08-12 | fix `unnecessary_semicolon`: don't lint on stmts with attrs | Ada Alakbarova | -0/+29 |
| 2025-08-12 | Add change tracker entry | Jakub Beránek | -0/+5 |
| 2025-08-12 | Replace `stage0-tools-bin` with `stage1-tools-bin` | Jakub Beránek | -5/+5 |
| 2025-08-12 | Change the desugaring of `assert!` for better error output | Esteban Küber | -9/+16 |
| 2025-08-12 | Change the desugaring of `assert!` for better error output | Esteban Küber | -50/+134 |
| 2025-08-12 | clippy: Update for switch to `MacroKinds` | Josh Triplett | -5/+3 |
| 2025-08-12 | rustdoc: Minimal fixes to compile with `MacroKinds` | Josh Triplett | -41/+70 |
| 2025-08-12 | clippy: Update for switch to `MacroKinds` | Josh Triplett | -5/+3 |
| 2025-08-12 | mbe: Rename macro parsing state names to use `Bang` instead of `Not` | Josh Triplett | -9/+9 |
| 2025-08-12 | Detect and report macro kind mismatches early, and more precisely | Josh Triplett | -29/+108 |
| 2025-08-12 | Only suggest changing `#[derive(mymacro)]` to `#[mymacro]` for attribute macros | Josh Triplett | -8/+1 |
| 2025-08-12 | Expand documentation of `GlobDelegation` | Josh Triplett | -0/+2 |
| 2025-08-12 | Switch to a bitflags `MacroKinds` to support macros with more than one kind | Josh Triplett | -119/+212 |
| 2025-08-12 | Auto merge of #144678 - jdonszelmann:no-mangle-extern, r=bjorn3 | bors | -55/+85 |
| 2025-08-12 | Auto merge of #144678 - jdonszelmann:no-mangle-extern, r=bjorn3 | bors | -1/+1 |
| 2025-08-12 | Remove one dependency from tracing bootstrap build | Jakub Beránek | -131/+1 |
| 2025-08-12 | `too_many_lines`: only highlight the function signature | Ada Alakbarova | -40/+23 |
| 2025-08-12 | Merge pull request #20432 from sgasho/fix/20215_implement_default_member_to_r... | Chayim Refael Friedman | -8/+102 |