| Age | Commit message (Expand) | Author | Lines |
| 2023-03-11 | Rollup merge of #108806 - cjgillot:query-lints, r=davidtwco | Matthias Krüger | -2/+2 |
| 2023-03-11 | Rollup merge of #104363 - WaffleLapkin:bonk_box_new, r=Nilstrieb | Matthias Krüger | -2/+6 |
| 2023-03-09 | Document tool lints | clubby789 | -0/+30 |
| 2023-03-06 | Querify registered_tools. | Camille GILLOT | -2/+2 |
| 2023-03-05 | Auto merge of #108351 - petrochenkov:rmdit, r=cjgillot | bors | -2/+2 |
| 2023-03-03 | Make `unused_allocation` lint warn against `Box::new` | Maybe Waffle | -2/+6 |
| 2023-03-03 | Match unmatched backticks in compiler/ that are part of rustdoc | est31 | -1/+1 |
| 2023-03-02 | rustc_middle: Remove trait `DefIdTree` | Vadim Petrochenkov | -2/+2 |
| 2023-02-27 | Rollup merge of #108363 - cjgillot:unused-crate, r=WaffleLapkin | Matthias Krüger | -0/+17 |
| 2023-02-26 | Rollup merge of #107890 - obeis:mapping-to-unit, r=cjgillot | Matthias Krüger | -1/+141 |
| 2023-02-24 | Use `List::empty()` instead of `mk_substs(&[])`. | Nicholas Nethercote | -3/+3 |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -3/+3 |
| 2023-02-23 | Emit `map_unit_fn` lint in closure case | Obei Sideg | -0/+16 |
| 2023-02-23 | Add lint against `Iterator::map` receiving a callable that returns `()` | Obei Sideg | -1/+125 |
| 2023-02-22 | Move the unused extern crate check back to the resolver. | Camille GILLOT | -0/+17 |
| 2023-02-22 | Auto merge of #108340 - eggyal:remove_traversal_trait_aliases, r=oli-obk | bors | -4/+6 |
| 2023-02-22 | Remove type-traversal trait aliases | Alan Egerton | -4/+6 |
| 2023-02-22 | errors: generate typed identifiers in each crate | David Wood | -87/+104 |
| 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 |