| Age | Commit message (Expand) | Author | Lines |
| 2021-12-27 | Tighten span when suggesting lifetime on path | Michael Goulet | -1/+3 |
| 2021-12-23 | implement `generic_arg_infer` for array lengths | lcnr | -2/+23 |
| 2021-12-19 | Auto merge of #91957 - nnethercote:rm-SymbolStr, r=oli-obk | bors | -1/+1 |
| 2021-12-18 | Rollup merge of #89090 - cjgillot:bare-dyn, r=jackh726 | Matthias Krüger | -45/+3 |
| 2021-12-17 | Auto merge of #89841 - cormacrelf:let-else-typed, r=nagisa | bors | -27/+19 |
| 2021-12-15 | Rollup merge of #91888 - BoxyUwU:generic_arg_infer_aaaa, r=lcnr | Matthias Krüger | -2/+1 |
| 2021-12-15 | Rollup merge of #90521 - jhpratt:stabilize-destructuring_assignment, r=jackh7... | Matthias Krüger | -19/+0 |
| 2021-12-15 | Remove unnecessary sigils around `Symbol::as_str()` calls. | Nicholas Nethercote | -1/+1 |
| 2021-12-14 | Stabilize `destructuring_assignment` | Jacob Pratt | -19/+0 |
| 2021-12-15 | Rollup merge of #91881 - Patrick-Poitras:stabilize-iter-zip, r=scottmcm | Matthias Krüger | -1/+0 |
| 2021-12-14 | Stabilize iter::zip. | PFPoitras | -1/+0 |
| 2021-12-14 | awdawdawd | Ellen | -2/+1 |
| 2021-12-13 | Fix rebase and clippy tests | Esteban Kuber | -7/+17 |
| 2021-12-13 | Keep info on pre-desugaring expression for better "incorrect `.await`" sugges... | Esteban Kuber | -16/+46 |
| 2021-12-13 | When `.await` is called on a non-`Future` expression, suggest removal | Esteban Kuber | -2/+3 |
| 2021-12-13 | let-else: fix attribute aliasing + add test for issue 89807 | Cormac Relf | -0/+1 |
| 2021-12-13 | let-else: add hir::Let and type check it like a hir::Local | Cormac Relf | -27/+18 |
| 2021-12-11 | Rollup merge of #91643 - Amanieu:r9x18, r=joshtriplett | Matthias Krüger | -1/+6 |
| 2021-12-10 | asm: Allow using r9 (ARM) and x18 (AArch64) if they are not reserved by | Amanieu d'Antras | -1/+6 |
| 2021-12-07 | Store impl_trait_fn inside OpaqueTyOrigin. | Camille GILLOT | -23/+11 |
| 2021-12-07 | Use collect_in_band_defs for async lifetime captures. | Camille GILLOT | -54/+44 |
| 2021-12-07 | Simplify collect_in_band_defs. | Camille GILLOT | -36/+35 |
| 2021-12-04 | Lint bare traits in AstConv. | Camille GILLOT | -45/+3 |
| 2021-12-04 | Use IntoIterator for array impl everywhere. | Mara Bos | -4/+3 |
| 2021-12-03 | add `unwind_asm` feature gate for `may_unwind` option | cynecx | -0/+11 |
| 2021-12-03 | Auto merge of #90737 - eholk:intofuture, r=tmandry | bors | -4/+22 |
| 2021-12-03 | Rollup merge of #91273 - Badel2:ice-index-str, r=estebank | Matthias Krüger | -9/+13 |
| 2021-11-30 | Merge Implicit and ImplicitMissing. | Camille GILLOT | -15/+7 |
| 2021-11-30 | Simplify lowering. | Camille GILLOT | -37/+31 |
| 2021-11-30 | Lint elided lifetimes in path during lifetime resolution. | Camille GILLOT | -23/+16 |
| 2021-11-26 | Fix ICE #91268 by checking that the snippet ends with a `)` | Badel2 | -9/+13 |
| 2021-11-26 | Auto merge of #85102 - estebank:point-at-assignment, r=oli-obk | bors | -4/+12 |
| 2021-11-25 | On type mismatch caused by assignment, point at assignee | Esteban Küber | -4/+12 |
| 2021-11-23 | Do not visit attributes in `ItemLowerer`. | Camille GILLOT | -0/+5 |
| 2021-11-22 | Fix comments | Eric Holk | -2/+2 |
| 2021-11-22 | Reintroduce `into_future` in `.await` desugaring | Eric Holk | -5/+23 |
| 2021-11-21 | Simplify for loop desugar | Cameron Steffen | -99/+38 |
| 2021-11-19 | Rollup merge of #90990 - nnethercote:arenas-cleanup, r=oli-obk | Yuki Okushi | -1/+1 |
| 2021-11-18 | rustc: Remove `#[rustc_synthetic]` | Vadim Petrochenkov | -10/+2 |
| 2021-11-17 | Remove unnecessary lifetime argument from arena macros. | Nicholas Nethercote | -1/+1 |
| 2021-11-10 | Add support for specifying multiple clobber_abi in `asm!` | asquared31415 | -7/+40 |
| 2021-11-07 | ast: Fix naming conventions in AST structures | Vadim Petrochenkov | -23/+23 |
| 2021-11-07 | Add features gates for experimental asm features | Amanieu d'Antras | -4/+46 |
| 2021-10-29 | Auto merge of #90380 - Mark-Simulacrum:revert-89558-query-stable-lint, r=lcnr | bors | -1/+0 |
| 2021-10-28 | Revert "Add rustc lint, warning when iterating over hashmaps" | Mark Rousskov | -1/+0 |
| 2021-10-28 | Auto merge of #90145 - cjgillot:sorted-map, r=michaelwoerister | bors | -29/+16 |
| 2021-10-26 | Remove unnecessary check for registers | Yuki Okushi | -3/+1 |
| 2021-10-26 | Fix some typos | Yuki Okushi | -2/+2 |
| 2021-10-24 | Rollup merge of #89558 - lcnr:query-stable-lint, r=estebank | Matthias Krüger | -0/+1 |
| 2021-10-22 | Rollup merge of #89895 - camsteffen:for-loop-head-span, r=davidtwco | Yuki Okushi | -21/+18 |