| Age | Commit message (Expand) | Author | Lines |
| 2023-02-21 | Rollup merge of #108000 - y21:no-zero-init-for-uninhabited, r=jackh726 | Dylan DPC | -3/+18 |
| 2023-02-20 | Rollup merge of #108200 - jhpratt:restricted-damerau-levenshtein-distance, r=... | Matthias Krüger | -1/+1 |
| 2023-02-19 | Make public API, docs algorithm-agnostic | Jacob Pratt | -1/+1 |
| 2023-02-18 | lint: don't suggest assume_init for uninhabited types | y21 | -3/+18 |
| 2023-02-18 | Rollup merge of #108162 - clubby789:issue-108155, r=Nilstrieb | Matthias Krüger | -4/+3 |
| 2023-02-17 | Don't eagerly convert principal to string | clubby789 | -4/+3 |
| 2023-02-17 | Add `Clause::ConstArgHasType` variant | Boxy | -0/+2 |
| 2023-02-17 | Auto merge of #107753 - kylematsuda:type-of, r=BoxyUwU | bors | -16/+20 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -20/+18 |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -18/+24 |
| 2023-02-17 | Rollup merge of #107489 - compiler-errors:non_lifetime_binders, r=cjgillot | Matthias Krüger | -6/+6 |
| 2023-02-16 | Replace some `then`s with some `then_some`s | Maybe Waffle | -2/+3 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -16/+7 |
| 2023-02-16 | Rename some region-specific stuff | Michael Goulet | -6/+6 |
| 2023-02-14 | Auto merge of #108056 - matthiaskrgr:rollup-oa6bxvh, r=matthiaskrgr | bors | -1/+1 |
| 2023-02-14 | Rollup merge of #108007 - compiler-errors:str-less-kind, r=Nilstrieb | Matthias Krüger | -1/+1 |
| 2023-02-14 | Rollup merge of #108029 - oli-obk:🞋_usize, r=RalfJung | Matthias Krüger | -2/+2 |
| 2023-02-14 | s/eval_usize/eval_target_usize/ for clarity | Oli Scherer | -2/+2 |
| 2023-02-14 | Fix #107998, avoid ICE when the generic_span is empty | yukang | -1/+9 |
| 2023-02-13 | Use is_str instead of string kind comparison | Michael Goulet | -1/+1 |
| 2023-02-13 | Make visiting traits generic over the Interner | Alan Egerton | -1/+1 |
| 2023-02-13 | Alias folding/visiting traits instead of re-export | Alan Egerton | -1/+1 |
| 2023-02-10 | add `AliasEq` to `PredicateKind` | Boxy | -0/+2 |
| 2023-02-06 | Auto merge of #103761 - chenyukang:yukang/fix-103320-must-use, r=compiler-errors | bors | -2/+34 |
| 2023-02-05 | Auto merge of #107663 - matthiaskrgr:107423-point-at-EOF-code, r=compiler-errors | bors | -0/+4 |
| 2023-02-04 | don't point at nonexisting code beyond EOF when warning about unused delims | Matthias Krüger | -0/+4 |
| 2023-02-03 | Rollup merge of #107539 - PossiblyAShrub:unused-parens-in-index, r=lcnr | Dylan DPC | -0/+4 |
| 2023-02-04 | Fix #103320, add explanatory message for [#must_use] | yukang | -2/+34 |
| 2023-02-02 | Emit warnings on unused parens/braces in index expressions | Aidan Olsen | -0/+4 |
| 2023-02-01 | Auto merge of #107536 - GuillaumeGomez:rollup-xv7dx2h, r=GuillaumeGomez | bors | -19/+20 |
| 2023-01-31 | Rollup merge of #107467 - WaffleLapkin:uneq, r=oli-obk | Guillaume Gomez | -19/+20 |
| 2023-01-31 | make unaligned_reference a hard error | Ralf Jung | -1/+10 |
| 2023-01-31 | Review changes | Maybe Waffle | -1/+1 |
| 2023-01-30 | Replace enum `==`s with `match`es where it makes sense | Maybe Waffle | -20/+21 |
| 2023-01-30 | Allow more deriving on packed structs. | Nicholas Nethercote | -0/+3 |
| 2023-01-29 | Auto merge of #106253 - nbdd0121:upcast, r=compiler-errors | bors | -0/+70 |
| 2023-01-28 | Auto merge of #107206 - cjgillot:no-h2l-map, r=WaffleLapkin | bors | -51/+49 |
| 2023-01-28 | Reintroduce multiple_supertrait_upcastable lint | Gary Guo | -0/+70 |
| 2023-01-28 | Auto merge of #106916 - lukas-code:overlapping-substs, r=estebank | bors | -7/+30 |
| 2023-01-28 | Remove `HirId -> LocalDefId` map from HIR. | Camille GILLOT | -26/+23 |
| 2023-01-28 | Take a LocalDefId in hir::Visitor::visit_fn. | Camille GILLOT | -26/+27 |
| 2023-01-27 | Introduce GeneratorWitnessMIR. | Camille GILLOT | -0/+1 |
| 2023-01-26 | change fn_sig query to use EarlyBinder; remove bound_fn_sig query; add EarlyB... | Kyle Matsuda | -1/+1 |
| 2023-01-26 | replace usages of fn_sig query with bound_fn_sig | Kyle Matsuda | -1/+1 |
| 2023-01-23 | fix: use LocalDefId instead of HirId in trait res | Vincenzo Palazzo | -2/+3 |
| 2023-01-21 | Rollup merge of #106935 - TaKO8Ki:fix-104440, r=cjgillot | Michael Goulet | -21/+26 |
| 2023-01-20 | Auto merge of #105102 - compiler-errors:copy-impl-considering-regions, r=lcnr | bors | -8/+10 |
| 2023-01-20 | fix overlapping spans for `explicit_outlives_requirements` in macros | Lukas Markeffsky | -7/+30 |
| 2023-01-17 | Stop using `BREAK` & `CONTINUE` in compiler | Scott McMurray | -1/+1 |
| 2023-01-17 | Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726 | Matthias Krüger | -3/+3 |