| Age | Commit message (Expand) | Author | Lines |
| 2025-08-15 | Rollup merge of #144907 - ShoyuVanilla:no-const-async, r=fmease | Jacob Pratt | -0/+33 |
| 2025-08-15 | fix: Reject async assoc fns of const traits/impls in ast_passes | Shoyu Vanilla | -0/+33 |
| 2025-08-15 | Rollup merge of #143075 - workingjubilee:interrupts-may-return-nevermore, r=d... | Stuart Cook | -3/+15 |
| 2025-08-14 | cleanup: Remove useless `[T].iter().last()` | Esteban Küber | -1/+1 |
| 2025-08-11 | Extract ast TraitImplHeader | Cameron Steffen | -20/+14 |
| 2025-08-11 | Move trait impl modifier errors to parsing | Cameron Steffen | -53/+5 |
| 2025-08-11 | Factor out InherentImplCannotUnsafe | Cameron Steffen | -19/+11 |
| 2025-08-09 | remove `P` | Deadbeef | -2/+1 |
| 2025-08-07 | Rollup merge of #137831 - estebank:auto-trait-err, r=compiler-errors | Stuart Cook | -11/+16 |
| 2025-08-04 | Tweak auto trait errors | Esteban Küber | -11/+16 |
| 2025-08-04 | fix: Error on illegal `[const]`s inside blocks within legal positions | Shoyu Vanilla | -16/+55 |
| 2025-07-28 | use let chains in ast, borrowck, codegen, const_eval | Kivooeo | -20/+15 |
| 2025-07-18 | AST lowering: More robustly deal with relaxed bounds | León Orell Valerian Liehr | -44/+0 |
| 2025-07-17 | parse `const trait Trait` | Deadbeef | -18/+26 |
| 2025-07-06 | compiler: rename {ast,hir}::BareFn* to FnPtr* | Jubilee Young | -11/+11 |
| 2025-07-04 | Rollup merge of #143380 - cjgillot:kw_span, r=compiler-errors | Jacob Pratt | -2/+2 |
| 2025-07-03 | Replace kw_span by full span. | Camille GILLOT | -2/+2 |
| 2025-07-03 | Rollup merge of #134006 - klensy:typos, r=nnethercote | Jana Dönszelmann | -1/+1 |
| 2025-07-03 | setup CI and tidy to use typos for spellchecking and fix few typos | klensy | -1/+1 |
| 2025-07-02 | Auto merge of #143214 - camsteffen:remove-let-chains-feature, r=est31 | bors | -1/+0 |
| 2025-07-01 | Remove support for dyn* | Michael Goulet | -1/+0 |
| 2025-06-30 | Remove let_chains feature | Cameron Steffen | -1/+0 |
| 2025-06-27 | Rollup merge of #139858 - oli-obk:new-const-traits-syntax, r=fee1-dead | Matthias Krüger | -11/+11 |
| 2025-06-27 | compiler: allow interrupts to return () or ! | Jubilee Young | -2/+14 |
| 2025-06-27 | compiler: fixup error message for x86-interrupt invalid returns | Jubilee Young | -1/+1 |
| 2025-06-26 | Change const trait bound syntax from ~const to [const] | Oli Scherer | -11/+11 |
| 2025-06-24 | Error on invalid signatures for interrupt ABIs | Folkert de Vries | -30/+103 |
| 2025-06-16 | Fold unnecessary visit_struct_field_def in AstValidator | Michael Goulet | -18/+2 |
| 2025-06-13 | Auto merge of #142443 - matthiaskrgr:rollup-l1l6d0v, r=matthiaskrgr | bors | -4/+166 |
| 2025-06-12 | add `extern "custom"` functions | Folkert de Vries | -4/+166 |
| 2025-06-12 | Rollup merge of #141162 - mejrs:gated, r=fee1-dead | Matthias Krüger | -2/+12 |
| 2025-06-09 | refactor `AttributeGate` and `rustc_attr!` to emit notes during feature chec... | mejrs | -2/+12 |
| 2025-06-03 | Add `iter` macro | Oli Scherer | -3/+4 |
| 2025-05-28 | Reorder `ast::ItemKind::{Struct,Enum,Union}` fields. | Nicholas Nethercote | -3/+3 |
| 2025-05-12 | update cfg(bootstrap) | Pietro Albini | -1/+0 |
| 2025-05-06 | Rollup merge of #140035 - fee1-dead-contrib:push-oszwkkvmpkks, r=jieyouxu,wes... | Stuart Cook | -0/+1 |
| 2025-05-05 | Implement RFC 3503: frontmatters | Deadbeef | -0/+1 |
| 2025-05-04 | Initial support for dynamically linked crates | Bryanskiy | -2/+6 |
| 2025-05-03 | Report the `unsafe_attr_outside_unsafe` lint at the closest node | Urgau | -1/+1 |
| 2025-05-03 | Have `AstValidation` track a linting node id | Urgau | -0/+7 |
| 2025-04-23 | Make #![feature(let_chains)] bootstrap conditional in compiler/ | est31 | -1/+1 |
| 2025-04-18 | Rollup merge of #139615 - nnethercote:rm-name_or_empty, r=jdonszelmann | Matthias Krüger | -3/+2 |
| 2025-04-17 | Auto merge of #139949 - matthiaskrgr:rollup-pxc5tsx, r=matthiaskrgr | bors | -11/+3 |
| 2025-04-16 | Move eager translation to a method on `Diag` | Jake Goulding | -11/+3 |
| 2025-04-17 | Replace infallible `name_or_empty` methods with fallible `name` methods. | Nicholas Nethercote | -3/+2 |
| 2025-04-16 | Add hard error for `extern` without explicit ABI | Obei Sideg | -5/+20 |
| 2025-04-07 | Rollup merge of #139035 - nnethercote:PatKind-Missing, r=oli-obk | Stuart Cook | -1/+1 |
| 2025-04-03 | Rollup merge of #139294 - beetrees:fix-f16-f128-literal-feature-gate, r=fmease | Matthias Krüger | -10/+12 |
| 2025-04-03 | Rollup merge of #139080 - m-ou-se:super-let-gate, r=traviscross | Matthias Krüger | -0/+1 |
| 2025-04-03 | Fix the `f16`/`f128` feature gate on integer literals | beetrees | -10/+12 |