| Age | Commit message (Expand) | Author | Lines |
| 2024-05-18 | Auto merge of #125105 - nnethercote:rustc_resolve-cleanups, r=estebank | bors | -0/+1 |
| 2024-05-15 | delegation: Implement list delegation | Vadim Petrochenkov | -5/+10 |
| 2024-05-10 | Remove `#[macro_use] extern crate tracing` from `rustc_resolve`. | Nicholas Nethercote | -0/+1 |
| 2024-05-08 | Rollup merge of #123344 - pietroalbini:pa-unused-imports, r=Nilstrieb | Matthias Krüger | -3/+3 |
| 2024-04-25 | ast: Generalize item kind visiting | Vadim Petrochenkov | -5/+3 |
| 2024-04-23 | delegation: Support async, const, extern "ABI" and C-variadic functions | Vadim Petrochenkov | -6/+8 |
| 2024-04-21 | Move "elided lifetime in path" to subdiagnostic struct | Xiretza | -7/+5 |
| 2024-04-17 | Rename `BindingAnnotation` to `BindingMode` | Jules Bertholet | -3/+3 |
| 2024-04-15 | More polishing | Michael Goulet | -0/+6 |
| 2024-04-15 | Use a path instead of an ident (and stop manually resolving) | Michael Goulet | -54/+12 |
| 2024-04-15 | Validation and other things | Michael Goulet | -0/+35 |
| 2024-04-15 | Implement resolution, parse use<Self> | Michael Goulet | -2/+22 |
| 2024-04-15 | Use dedicated PreciseCapturingArg for representing what goes in use<> | Michael Goulet | -0/+10 |
| 2024-04-15 | Parsing , pre-lowering support for precise captures | Michael Goulet | -1/+1 |
| 2024-04-14 | store the span of the nested part of the use tree in the ast | Pietro Albini | -3/+3 |
| 2024-04-13 | Migrate more diagnostics | Jean CASPAR | -3/+1 |
| 2024-04-13 | Migrate some diagnostics | Jean CASPAR | -48/+29 |
| 2024-03-26 | Delegation: fix ICE on wrong `self` resolution | Bryanskiy | -11/+42 |
| 2024-03-21 | Auto merge of #121587 - ShoyuVanilla:fix-issue-121267, r=TaKO8Ki | bors | -23/+21 |
| 2024-03-21 | Fix bad span for explicit lifetime suggestion | Shoyu Vanilla | -23/+21 |
| 2024-03-20 | Ignore paths from expansion in `unused_qualifications` | Alex Macleod | -1/+3 |
| 2024-03-19 | Rollup merge of #122435 - jieyouxu:unused_qualifications_global_paths, r=petr... | Matthias Krüger | -0/+7 |
| 2024-03-16 | Auto merge of #121926 - tgross35:f16-f128-step3-feature-gate, r=compiler-erro... | bors | -0/+20 |
| 2024-03-15 | Don't trigger `unused_qualifications` on global paths | 许杰友 Jieyou Xu (Joe) | -0/+7 |
| 2024-03-14 | Add feature gates for `f16` and `f128` | Trevor Gross | -0/+20 |
| 2024-03-14 | fixes #121331 | surechen | -12/+17 |
| 2024-03-12 | Manual rustfmt | Oli Scherer | -1/+1 |
| 2024-03-12 | Change `DefKind::Static` to a struct variant | Oli Scherer | -2/+2 |
| 2024-03-11 | Rename `IntoDiagnosticArg` as `IntoDiagArg`. | Nicholas Nethercote | -3/+3 |
| 2024-03-08 | Rollup merge of #119365 - nbdd0121:asm-goto, r=Amanieu | Matthias Krüger | -0/+1 |
| 2024-03-07 | Rollup merge of #121089 - oli-obk:create_def_feed, r=petrochenkov | Guillaume Gomez | -1/+1 |
| 2024-03-07 | Merge `check_mod_impl_wf` and `check_mod_type_wf` | Oli Scherer | -4/+13 |
| 2024-03-06 | Rollup merge of #122038 - Alexendoo:unused-qualifications, r=petrochenkov | Matthias Krüger | -33/+37 |
| 2024-03-05 | Fix linting paths with qself in `unused_qualifications` | Alex Macleod | -33/+37 |
| 2024-03-05 | Move visitor utils to `rustc_ast_ir` | Jason Newcomb | -1/+1 |
| 2024-03-05 | Eliminate all non-CRATE_DEF_ID uses of `feed_def_id` | Oli Scherer | -1/+1 |
| 2024-03-05 | Rename `DiagnosticMetadata` as `DiagMetadata`. | Nicholas Nethercote | -65/+60 |
| 2024-03-05 | Rename `BuiltinLintDiagnostics` as `BuiltinLintDiag`. | Nicholas Nethercote | -3/+3 |
| 2024-03-03 | Rollup merge of #121528 - Alexendoo:unused_qualifications, r=petrochenkov | Matthias Krüger | -22/+24 |
| 2024-03-03 | Consider middle segments of paths in `unused_qualifications` | Alex Macleod | -22/+24 |
| 2024-02-28 | Rename `DiagnosticArg{,Map,Name,Value}` as `DiagArg{,Map,Name,Value}`. | Nicholas Nethercote | -3/+3 |
| 2024-02-24 | Add asm label support to AST and HIR | Gary Guo | -0/+1 |
| 2024-02-21 | Convert `bug`s back to `delayed_bug`s. | Nicholas Nethercote | -2/+2 |
| 2024-02-21 | Convert `delayed_bug`s to `bug`s. | Nicholas Nethercote | -2/+2 |
| 2024-02-18 | resolve: Scale back unloading of speculatively loaded crates | Vadim Petrochenkov | -5/+0 |
| 2024-02-18 | By tracking import use types to check whether it is scope uses or the other s... | surechen | -7/+6 |
| 2024-02-14 | For E0038, suggest associated type if available | trevyn | -0/+18 |
| 2024-02-08 | Rollup merge of #120590 - compiler-errors:dead, r=Nilstrieb | Matthias Krüger | -5/+4 |
| 2024-02-08 | Rollup merge of #119592 - petrochenkov:unload, r=compiler-errors | Matthias Krüger | -7/+14 |
| 2024-02-06 | Rollup merge of #119939 - clubby789:static-const-generic-note, r=compiler-errors | Matthias Krüger | -20/+26 |