| Age | Commit message (Expand) | Author | Lines |
| 2023-05-30 | Rollup merge of #112060 - lcnr:early-binder, r=jackh726 | Nilstrieb | -10/+10 |
| 2023-05-30 | leak_check: remove unused codepath | lcnr | -13/+0 |
| 2023-05-30 | Auto merge of #112075 - WaffleLapkin:unmkII, r=lcnr | bors | -107/+125 |
| 2023-05-29 | Rollup merge of #111988 - BoxyUwU:make_tykind_debug_good, r=compiler-errors | Matthias Krüger | -52/+84 |
| 2023-05-29 | Rename `tcx.mk_re_*` => `Region::new_*` | Maybe Waffle | -107/+125 |
| 2023-05-29 | EarlyBinder::new -> EarlyBinder::bind | lcnr | -10/+10 |
| 2023-05-29 | Use `Cow` in `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -10/+11 |
| 2023-05-28 | Add documentation on skip_binder on how to get &T from &EarlyBinder<T> | Kyle Matsuda | -0/+3 |
| 2023-05-28 | Make EarlyBinder's inner value private; and fix all of the resulting errors | Kyle Matsuda | -3/+3 |
| 2023-05-28 | Replace EarlyBinder(x) with EarlyBinder::new(x) | Kyle Matsuda | -9/+13 |
| 2023-05-28 | Auto merge of #111378 - jieyouxu:local-shadows-glob-reexport, r=petrochenkov | bors | -1/+1 |
| 2023-05-27 | Add warn-by-default lint for local binding shadowing exported glob re-export ... | 许杰友 Jieyou Xu (Joe) | -1/+1 |
| 2023-05-26 | better `TyKind::Debug` | Boxy | -52/+84 |
| 2023-05-26 | print const and type errors in braces not square brackets | Boxy | -3/+3 |
| 2023-05-26 | Wait until type_of to remap HIR opaques back to their defn params | Michael Goulet | -1/+1 |
| 2023-05-25 | Remove ExpnKind::Inlined. | Camille GILLOT | -3/+1 |
| 2023-05-25 | Use De Morgan's law to simplify logic | Michael Howell | -6/+6 |
| 2023-05-25 | remove outdated comment from `is_user_visible_dep` docs | Michael Howell | -4/+0 |
| 2023-05-25 | diagnostics: don't crash if an injected crate shows up in suggestions | Michael Howell | -1/+4 |
| 2023-05-25 | diagnostics: exclude indirect private deps from trait impl suggest | Michael Howell | -1/+22 |
| 2023-05-25 | Auto merge of #111473 - compiler-errors:opaques, r=lcnr | bors | -11/+47 |
| 2023-05-25 | Rollup merge of #111875 - WaffleLapkin:defer_on_drop, r=Nilstrieb | Matthias Krüger | -1/+1 |
| 2023-05-25 | Check that opaque is a defining use, prefer pre-defined opaques | Michael Goulet | -0/+36 |
| 2023-05-25 | Prepopulate opaques in canonical input | Michael Goulet | -1/+7 |
| 2023-05-25 | Pull out logic from #111131, plus some new logic in EvalCtxt::normalize_opaqu... | Michael Goulet | -10/+4 |
| 2023-05-24 | Use `Option::is_some_and` and `Result::is_ok_and` in the compiler | Maybe Waffle | -7/+7 |
| 2023-05-24 | Rollup merge of #111870 - WaffleLapkin:just_🌟traits🌟_query, r=compiler-... | Matthias Krüger | -1/+1 |
| 2023-05-23 | Rename `traits_in_crate` query to `traits` | Maybe Waffle | -1/+1 |
| 2023-05-23 | Rollup merge of #111486 - fmease:pp-inh-proj, r=petrochenkov | Matthias Krüger | -1/+21 |
| 2023-05-23 | Don't leak the function that is called on drop | Maybe Waffle | -1/+1 |
| 2023-05-22 | Check opaques for mismatch during writeback | Michael Goulet | -7/+23 |
| 2023-05-22 | properly pretty-print inherent projections | León Orell Valerian Liehr | -1/+21 |
| 2023-05-19 | Add extra debug assertions for equality for Adt/Variant/FieldDef | Michael Goulet | -5/+44 |
| 2023-05-19 | Auto merge of #111641 - michaelwoerister:debugger-visualizer-fixes, r=cjgillot | bors | -1/+1 |
| 2023-05-18 | Rollup merge of #111633 - nnethercote:avoid-ref-format, r=WaffleLapkin | Dylan DPC | -3/+7 |
| 2023-05-17 | Rollup merge of #111625 - Zoxc:rustc_middle-query-move, r=cjgillot | Dylan DPC | -654/+11 |
| 2023-05-17 | Auto merge of #111630 - BoxyUwU:ty_const_debug_formatting, r=compiler-errors | bors | -41/+71 |
| 2023-05-17 | Finish move of query.rs | John Kåre Alsaker | -14/+11 |
| 2023-05-17 | Move rustc_middle/src/ty/query.rs to rustc_middle/src/query/plumbing.rs | John Kåre Alsaker | -640/+0 |
| 2023-05-16 | Move DebuggerVisualizerFile types from rustc_span to rustc_middle | Michael Woerister | -1/+1 |
| 2023-05-16 | Rollup merge of #111573 - compiler-errors:erase-re-error, r=WaffleLapkin | Matthias Krüger | -1/+3 |
| 2023-05-16 | Rollup merge of #111533 - clubby789:drop-tracking-error, r=oli-obk | Matthias Krüger | -3/+3 |
| 2023-05-16 | format `Const`'s less verbosely | Boxy | -41/+71 |
| 2023-05-16 | Rollup merge of #111602 - tmiasko:erroneous-constant-used, r=oli-obk | Nilstrieb | -2/+2 |
| 2023-05-16 | Avoid `&format("...")` calls in error message code. | Nicholas Nethercote | -3/+7 |
| 2023-05-15 | Auto merge of #111221 - compiler-errors:yeet-generalizer, r=lcnr | bors | -16/+37 |
| 2023-05-15 | Rename super_relate_* to structurally_relate_* | Michael Goulet | -16/+19 |
| 2023-05-15 | yeet ConstInferUnifier | Michael Goulet | -0/+18 |
| 2023-05-15 | Rollup merge of #111578 - Zoxc:query-macro-move, r=cjgillot | Matthias Krüger | -90/+29 |
| 2023-05-15 | Move expansion of query macros in rustc_middle to rustc_middle::query | John Kåre Alsaker | -90/+29 |