| Age | Commit message (Expand) | Author | Lines |
| 2021-12-14 | Stabilize iter::zip. | PFPoitras | -1/+0 |
| 2021-12-14 | fmt | lcnr | -2/+1 |
| 2021-12-14 | add some comments | lcnr | -0/+8 |
| 2021-12-14 | extend `simplify_type` | lcnr | -17/+54 |
| 2021-12-14 | fix clippy::single_char_pattern perf findings | Matthias Krüger | -1/+1 |
| 2021-12-13 | review comment: change wording of suggestion | Esteban Kuber | -1/+1 |
| 2021-12-13 | review comments | Esteban Kuber | -8/+20 |
| 2021-12-13 | Simplify diagnostic logic | Esteban Kuber | -123/+44 |
| 2021-12-13 | Fix rebase and clippy tests | Esteban Kuber | -38/+40 |
| 2021-12-13 | Keep info on pre-desugaring expression for better "incorrect `.await`" sugges... | Esteban Kuber | -2/+36 |
| 2021-12-13 | Reduce verbosity for `?` on non-`Try` expressions | Esteban Kuber | -0/+1 |
| 2021-12-13 | Reduce verbosity when calling `for`-loop on non-`Iterator` expression | Esteban Kuber | -2/+5 |
| 2021-12-13 | When `.await` is called on a non-`Future` expression, suggest removal | Esteban Kuber | -0/+27 |
| 2021-12-12 | Auto merge of #91549 - fee1-dead:const_env, r=spastorino | bors | -236/+181 |
| 2021-12-12 | Auto merge of #90423 - Aaron1011:deduplicate-projection, r=jackh726 | bors | -0/+6 |
| 2021-12-12 | Remap more env constness for queries | Deadbeef | -18/+17 |
| 2021-12-12 | Remap predicate/env constness before querying | Deadbeef | -4/+24 |
| 2021-12-12 | Revert "Auto merge of #91491 - spastorino:revert-91354, r=oli-obk" | Deadbeef | -231/+157 |
| 2021-12-11 | Tweak assoc type obligation spans | Esteban Kuber | -3/+63 |
| 2021-12-10 | Rollup merge of #91625 - est31:remove_indexes, r=oli-obk | Matthias Krüger | -3/+3 |
| 2021-12-09 | Remove redundant [..]s | est31 | -3/+3 |
| 2021-12-08 | Use Vec extend instead of repeated pushes in several places | Jakub Beránek | -6/+2 |
| 2021-12-05 | Auto merge of #91555 - matthiaskrgr:rollup-pq0iaq7, r=matthiaskrgr | bors | -5/+17 |
| 2021-12-05 | Rollup merge of #90529 - b-naber:reborrows-consts, r=lcnr | Matthias Krüger | -5/+17 |
| 2021-12-05 | skip reborrows during AbstractConst building | b-naber | -5/+17 |
| 2021-12-04 | Use IntoIterator for array impl everywhere. | Mara Bos | -6/+2 |
| 2021-12-04 | Rollup merge of #90519 - estebank:issue-84003, r=petrochenkov | Matthias Krüger | -3/+3 |
| 2021-12-03 | Annotate `derive`d spans and move span suggestion code | Esteban Kuber | -3/+3 |
| 2021-12-03 | Revert "Auto merge of #91354 - fee1-dead:const_env, r=spastorino" | Santiago Pastorino | -157/+231 |
| 2021-12-02 | Auto merge of #91469 - matthiaskrgr:rollup-xom3j55, r=matthiaskrgr | bors | -1/+5 |
| 2021-12-02 | Rollup merge of #91329 - Aaron1011:modulo-regions-test, r=jackh726 | Matthias Krüger | -1/+5 |
| 2021-12-02 | Auto merge of #91318 - eggyal:reduce-boilerplate-around-infallible-folders, r... | bors | -119/+101 |
| 2021-12-02 | Rename TypeFolderFallible to FallibleTypeFolder | Alan Egerton | -2/+2 |
| 2021-12-02 | Reduce boilerplate around infallible folders | Alan Egerton | -119/+101 |
| 2021-12-02 | Auto merge of #91455 - matthiaskrgr:rollup-gix2hy6, r=matthiaskrgr | bors | -3/+1 |
| 2021-12-02 | Rollup merge of #91394 - Mark-Simulacrum:bump-stage0, r=pietroalbini | Matthias Krüger | -3/+1 |
| 2021-12-02 | Auto merge of #91354 - fee1-dead:const_env, r=spastorino | bors | -232/+157 |
| 2021-12-01 | TODO => FIXME | Deadbeef | -1/+1 |
| 2021-12-01 | Cache with consistent env and bound | Deadbeef | -8/+18 |
| 2021-12-01 | Rollup merge of #90985 - camsteffen:diag-name-usage, r=jackh726 | Matthias Krüger | -6/+6 |
| 2021-11-30 | re-format with new rustfmt | Mark Rousskov | -3/+1 |
| 2021-11-29 | Reformat everything | Deadbeef | -4/+1 |
| 2021-11-29 | Completely remove ConstnessAnd | Oli Scherer | -12/+10 |
| 2021-11-29 | Avoid storing the ImplPolarity and Constness next to a TraitRef and use Trait... | Oli Scherer | -43/+51 |
| 2021-11-29 | Replace `ConstnessAnd<TraitRef>` with `TraitPredicate` which conveys the same... | Oli Scherer | -65/+44 |
| 2021-11-29 | Prefer TraitPredicate over ConstnessAnd<TraitRef> | Oli Scherer | -24/+9 |
| 2021-11-29 | Use the constness from the param env instead of having a separate dimension f... | Oli Scherer | -75/+4 |
| 2021-11-29 | Add constness to ParamEnv | Oli Scherer | -7/+26 |
| 2021-11-28 | Fix incorrect usage of `EvaluatedToOk` when evaluating `TypeOutlives` | Aaron Hill | -1/+5 |
| 2021-11-28 | Auto merge of #91230 - eggyal:fallible-type-fold, r=jackh726 | bors | -171/+163 |