| Age | Commit message (Expand) | Author | Lines |
| 2022-06-24 | beta fallout. | Camille GILLOT | -6/+7 |
| 2022-06-24 | Fail gracefully when encountering an HRTB in APIT. | Camille GILLOT | -7/+64 |
| 2022-05-14 | Auto merge of #97039 - cjgillot:no-rpit-hrtb, r=jackh726 | bors | -0/+14 |
| 2022-05-14 | Forbid nested opaque types to reference HRTB from opaque types. | Camille GILLOT | -0/+14 |
| 2022-05-13 | resolve: Move collection of all `macro_rules` in the crate to rustdoc | Vadim Petrochenkov | -12/+7 |
| 2022-05-13 | Rollup merge of #96989 - cjgillot:defpath-use, r=davidtwco | Matthias Krüger | -4/+4 |
| 2022-05-12 | Replace DefPathData::Misc by two appropriately-named variants. | Camille GILLOT | -4/+4 |
| 2022-05-12 | Auto merge of #95562 - lcnr:attr-no-encode, r=davidtwco | bors | -6/+1 |
| 2022-05-12 | Auto merge of #96150 - est31:unused_macro_rules, r=petrochenkov | bors | -14/+109 |
| 2022-05-10 | only_local: always check for misuse | lcnr | -6/+1 |
| 2022-05-07 | Auto merge of #96094 - Elliot-Roberts:fix_doctests, r=compiler-errors | bors | -15/+15 |
| 2022-05-06 | Rollup merge of #96557 - nbdd0121:const, r=oli-obk | Guillaume Gomez | -1/+8 |
| 2022-05-05 | Implement the unused_macro_rules lint | est31 | -14/+109 |
| 2022-05-05 | Rollup merge of #96507 - TaKO8Ki:suggest-calling-associated-function, r=lcnr | Matthias Krüger | -34/+80 |
| 2022-05-05 | suggest calling `Self::associated_function()` | Takayuki Maeda | -34/+80 |
| 2022-05-04 | Stabilize `bool::then_some` | Josh Triplett | -1/+0 |
| 2022-05-04 | Auto merge of #96353 - estebank:issue-95413, r=compiler-errors | bors | -1/+18 |
| 2022-05-03 | Auto merge of #95380 - compiler-errors:unit-destructure-assign, r=nikomatsakis | bors | -7/+4 |
| 2022-05-03 | Allow inline consts to reference generic params | Gary Guo | -1/+8 |
| 2022-05-03 | Rollup merge of #96641 - oli-obk:bool_args, r=wesleywiser | Yuki Okushi | -28/+50 |
| 2022-05-03 | Tweak wording | Esteban Kuber | -5/+4 |
| 2022-05-03 | When suggesting to import an item, also suggest changing the path if appropriate | Esteban Küber | -4/+22 |
| 2022-05-02 | fix most compiler/ doctests | Elliot Roberts | -15/+15 |
| 2022-05-02 | Use a yes/no enum instead of a bool. | Oli Scherer | -28/+50 |
| 2022-05-02 | Auto merge of #96431 - petrochenkov:parent, r=cjgillot | bors | -69/+53 |
| 2022-05-02 | rustc: Panic by default in `DefIdTree::parent` | Vadim Petrochenkov | -69/+53 |
| 2022-05-01 | Auto merge of #96521 - petrochenkov:docrules, r=notriddle,GuillaumeGomez | bors | -14/+19 |
| 2022-05-01 | resolve: Rename `unusable_binding` to `ignore_binding` | Vadim Petrochenkov | -54/+41 |
| 2022-05-01 | resolve: Merge `last_import_segment` into `Finalize` | Vadim Petrochenkov | -44/+16 |
| 2022-05-01 | resolve: Pass full `Finalize` in nearly all cases | Vadim Petrochenkov | -20/+18 |
| 2022-05-01 | resolve: Turn `enum Finalize` into an optional struct | Vadim Petrochenkov | -92/+59 |
| 2022-05-01 | rustdoc: Track `macro_rules` scopes during early doc link resolution | Vadim Petrochenkov | -3/+13 |
| 2022-04-30 | rustdoc: Keep full `ParentScope` during early doc link resolution | Vadim Petrochenkov | -11/+6 |
| 2022-04-30 | Store all generic bounds as where predicates. | Camille GILLOT | -60/+26 |
| 2022-04-30 | Inline WhereClause into Generics. | Camille GILLOT | -2/+2 |
| 2022-04-30 | Box HIR Generics and Impl. | Camille GILLOT | -1/+1 |
| 2022-04-30 | Auto merge of #95776 - cjgillot:ast-lifetimes-static, r=petrochenkov | bors | -70/+70 |
| 2022-04-30 | Use newtype `enum`s instead of `bool` | Esteban Kuber | -21/+43 |
| 2022-04-30 | When encountering a binding that could be a const or unit variant, suggest th... | Esteban Kuber | -34/+89 |
| 2022-04-30 | Ban non-static lifetimes from AnonConst on AST. | Camille GILLOT | -38/+37 |
| 2022-04-29 | Rollup merge of #96559 - cjgillot:elided-path-fn, r=petrochenkov | Dylan DPC | -12/+13 |
| 2022-04-29 | Remove `error` variable. | Camille GILLOT | -5/+3 |
| 2022-04-29 | Use the correct lifetime binder for elided lifetimes in path. | Camille GILLOT | -11/+14 |
| 2022-04-29 | errors: `span_suggestion` takes `impl ToString` | David Wood | -1/+1 |
| 2022-04-29 | Ban non-static in const generics in AST. | Camille GILLOT | -33/+34 |
| 2022-04-28 | Auto merge of #96495 - Dylan-DPC:rollup-9lm4tpp, r=Dylan-DPC | bors | -3/+1 |
| 2022-04-28 | Rollup merge of #96471 - BoxyUwU:let_else_considered_harmful, r=lcnr | Dylan DPC | -3/+1 |
| 2022-04-27 | Auto merge of #91557 - cjgillot:ast-lifetimes-named, r=petrochenkov | bors | -50/+202 |
| 2022-04-27 | Collect extra lifetime parameters during late resolution. | Camille GILLOT | -9/+44 |
| 2022-04-27 | Use LifetimeRes during lowering. | Camille GILLOT | -48/+165 |