| Age | Commit message (Expand) | Author | Lines |
| 2024-05-17 | Rename Unsafe to Safety | Santiago Pastorino | -15/+15 |
| 2024-05-15 | delegation: Implement list delegation | Vadim Petrochenkov | -6/+14 |
| 2024-05-13 | Warn against redundant use<...> | Michael Goulet | -6/+9 |
| 2024-05-09 | Add `ErrorGuaranteed` to `Recovered::Yes` and use it more. | Nicholas Nethercote | -3/+4 |
| 2024-05-08 | Rollup merge of #123344 - pietroalbini:pa-unused-imports, r=Nilstrieb | Matthias Krüger | -3/+3 |
| 2024-05-04 | Lower never patterns to Unreachable in mir | Nadrieril | -2/+2 |
| 2024-05-04 | Auto merge of #124401 - oli-obk:some_hir_cleanups, r=cjgillot | bors | -16/+19 |
| 2024-04-30 | Rollup merge of #124511 - nnethercote:rm-extern-crates, r=fee1-dead | Matthias Krüger | -4/+4 |
| 2024-04-30 | Remove `extern crate tracing` from numerous crates. | Nicholas Nethercote | -4/+4 |
| 2024-04-30 | Rollup merge of #124524 - spastorino:make-foreign-static-use-struct, r=oli-obk | Matthias Krüger | -4/+4 |
| 2024-04-29 | Rollup merge of #124488 - est31:arbitrary_expressions_error, r=pnkfelix | Matthias Krüger | -1/+7 |
| 2024-04-29 | Add StaticForeignItem and use it on ForeignItemKind | Santiago Pastorino | -4/+4 |
| 2024-04-28 | Add a note to the ArbitraryExpressionInPattern error | est31 | -1/+7 |
| 2024-04-26 | `Span`s are already 64 bit, just like references, so stop putting them behind... | Oli Scherer | -1/+1 |
| 2024-04-26 | Move `ConstArg::span` to `AnonConst::span` | Oli Scherer | -4/+4 |
| 2024-04-26 | put `hir::AnonConst` on the hir arena | Oli Scherer | -12/+15 |
| 2024-04-25 | ast: Generalize item kind visiting | Vadim Petrochenkov | -1/+1 |
| 2024-04-24 | Auto merge of #122500 - petrochenkov:deleg, r=fmease | bors | -42/+77 |
| 2024-04-24 | Error on using `yield` without also using `#[coroutine]` on the closure | Oli Scherer | -1/+15 |
| 2024-04-24 | Add explicit syntax for coroutines instead of relying on closures having `yie... | Oli Scherer | -1/+11 |
| 2024-04-23 | delegation: Support async, const, extern "ABI" and C-variadic functions | Vadim Petrochenkov | -42/+77 |
| 2024-04-21 | Pass translation closure to add_to_diag_with() as reference | Xiretza | -1/+1 |
| 2024-04-18 | Rollup merge of #123935 - tstsrt:fix-115423, r=oli-obk | Jubilee | -77/+117 |
| 2024-04-17 | Rename `BindingAnnotation` to `BindingMode` | Jules Bertholet | -18/+13 |
| 2024-04-17 | Rollup merge of #122813 - nnethercote:nicer-quals, r=compiler-errors | Matthias Krüger | -27/+21 |
| 2024-04-16 | Avoid lots of `hir::HirId{,Map,Set}` qualifiers. | Nicholas Nethercote | -27/+21 |
| 2024-04-15 | Use a path instead of an ident (and stop manually resolving) | Michael Goulet | -4/+7 |
| 2024-04-15 | Add hir::Node::PreciseCapturingNonLifetimeArg | Michael Goulet | -2/+23 |
| 2024-04-15 | Validation and other things | Michael Goulet | -5/+11 |
| 2024-04-15 | Lower and resolve precise captures in HIR | Michael Goulet | -16/+46 |
| 2024-04-15 | Use dedicated PreciseCapturingArg for representing what goes in use<> | Michael Goulet | -46/+43 |
| 2024-04-15 | Begin AST lowering for precise captures | Michael Goulet | -29/+50 |
| 2024-04-15 | Parsing , pre-lowering support for precise captures | Michael Goulet | -1/+2 |
| 2024-04-15 | Improve semantics of int_ty_max functions | ninad | -34/+26 |
| 2024-04-14 | store the span of the nested part of the use tree in the ast | Pietro Albini | -3/+3 |
| 2024-04-14 | Fix formatting | ninad | -1/+3 |
| 2024-04-14 | Don't inline integer literals when out of range | ninad | -77/+123 |
| 2024-04-08 | Actually create ranged int types in the type system. | Oli Scherer | -0/+4 |
| 2024-04-08 | Thread pattern types through the HIR | Oli Scherer | -1/+1 |
| 2024-04-08 | Add pattern types to ast | Oli Scherer | -1/+4 |
| 2024-04-04 | hir: Use `ItemLocalId` in a couple more places | Vadim Petrochenkov | -6/+5 |
| 2024-04-03 | Auto merge of #123429 - matthiaskrgr:rollup-4emw4e9, r=matthiaskrgr | bors | -8/+8 |
| 2024-04-03 | rustc_index: Add a `ZERO` constant to index types | Vadim Petrochenkov | -8/+8 |
| 2024-04-03 | hir: Drop owner's own item-local id (zero) from parenting tables | Vadim Petrochenkov | -1/+3 |
| 2024-03-27 | Implement `mut ref`/`mut ref mut` | Jules Bertholet | -2/+2 |
| 2024-03-22 | Rename `hir::Node::Local` into `hir::Node::LetStmt` | Guillaume Gomez | -1/+1 |
| 2024-03-22 | Rename `hir::Local` into `hir::LetStmt` | Guillaume Gomez | -4/+4 |
| 2024-03-22 | Auto merge of #122869 - matthiaskrgr:rollup-0navj4l, r=matthiaskrgr | bors | -2/+5 |
| 2024-03-22 | Rollup merge of #121619 - RossSmyth:pfix_match, r=petrochenkov | Matthias Krüger | -2/+5 |
| 2024-03-22 | Update (doc) comments | León Orell Valerian Liehr | -5/+6 |