| Age | Commit message (Expand) | Author | Lines |
| 2025-04-02 | Auto merge of #139018 - oli-obk:incremental-trait-impls, r=compiler-errors | bors | -37/+32 |
| 2025-04-02 | Remove a function that has no necessary callers | Oli Scherer | -15/+0 |
| 2025-04-02 | Remove a `hir_*` helper that was just forwarding to a query | Oli Scherer | -1/+1 |
| 2025-04-02 | Fetch the destructor constness lazily | Oli Scherer | -7/+5 |
| 2025-04-02 | Only look at trait impls in the current crate when looking for `Drop` impls | Oli Scherer | -12/+22 |
| 2025-04-02 | Move methods from `Map` to `TyCtxt`, part 5. | Nicholas Nethercote | -6/+6 |
| 2025-04-01 | replace extra_filename with strict version hash in metrics file names | Jane Losare-Lusby | -0/+5 |
| 2025-04-01 | Ensure `calculcate_dtor` is only ever called on local types | Oli Scherer | -2/+2 |
| 2025-04-01 | Store adt_async_destructor in metadata | Oli Scherer | -0/+1 |
| 2025-04-01 | Store adt_destructor in metadata | Oli Scherer | -0/+1 |
| 2025-04-01 | Improve docs of ValTreeKind | bjorn3 | -1/+1 |
| 2025-03-31 | Rollup merge of #139181 - tiif:doc, r=Noratrieb | Matthias Krüger | -2/+2 |
| 2025-03-31 | Fix invalid link | tiif | -2/+2 |
| 2025-03-30 | Encode synthetic by-move coroutine body with a different DefPathData | Michael Goulet | -5/+8 |
| 2025-03-30 | Revert "Auto merge of #129827 - bvanjoi:less-decoding, r=petrochenkov" | Jakub Beránek | -1/+1 |
| 2025-03-29 | less decoding if it has the same syntax context | bohan | -1/+1 |
| 2025-03-28 | Remove ScopeDepth entirely. | Mara Bos | -1/+1 |
| 2025-03-28 | Remove `rustc_middle::ty::util::ExplicitSelf`. | Nicholas Nethercote | -49/+0 |
| 2025-03-27 | Rollup merge of #138926 - nnethercote:less-kw-Empty-rustc_middle, r=lcnr | Jacob Pratt | -14/+8 |
| 2025-03-27 | Rollup merge of #130883 - madsmtm:env-var-query, r=petrochenkov | Stuart Cook | -0/+11 |
| 2025-03-26 | `lower_pat_expr`: use the pattern's type instead of the literal's | dianne | -7/+0 |
| 2025-03-26 | Add `TyCtx::env_var_os` | Mads Marquart | -0/+11 |
| 2025-03-26 | Remove `kw::Empty` uses from `rustc_middle`. | Nicholas Nethercote | -14/+8 |
| 2025-03-26 | Ensure define_opaque is accounted for in HIR hash | Michael Goulet | -1/+2 |
| 2025-03-25 | Auto merge of #136410 - saethlin:clean-up-cgu-internal-copy, r=compiler-errors | bors | -44/+0 |
| 2025-03-24 | Remove InstanceKind::generates_cgu_internal_copy | Ben Kimock | -44/+0 |
| 2025-03-23 | Remove STILL_FURTHER_SPECIALIZABLE special casing | Michael Goulet | -74/+15 |
| 2025-03-23 | Remove HAS_TY_COROUTINE | Michael Goulet | -1/+0 |
| 2025-03-23 | Visit coroutine kind ty in FlagComputation | Michael Goulet | -0/+1 |
| 2025-03-20 | Auto merge of #133889 - compiler-errors:inh-unstable, r=Nadrieril | bors | -0/+16 |
| 2025-03-19 | Auto merge of #138714 - matthiaskrgr:rollup-8uwbpwv, r=matthiaskrgr | bors | -2/+24 |
| 2025-03-19 | Rollup merge of #138001 - meithecatte:privately-uninhabited, r=Nadrieril | Matthias Krüger | -2/+24 |
| 2025-03-19 | Auto merge of #122156 - Zoxc:side-effect-dep-node, r=oli-obk | bors | -14/+2 |
| 2025-03-18 | Dont consider fields that are forced unstable due to -Zforce-unstable-if-unma... | Michael Goulet | -1/+8 |
| 2025-03-18 | Consider fields to be inhabited if they are unstable | Michael Goulet | -0/+9 |
| 2025-03-18 | Remove existing AFIDT implementation | Michael Goulet | -100/+1 |
| 2025-03-17 | Rollup merge of #138384 - nnethercote:hir-ItemKind-idents, r=fmease | Matthias Krüger | -5/+3 |
| 2025-03-18 | Move `hir::Item::ident` into `hir::ItemKind`. | Nicholas Nethercote | -5/+3 |
| 2025-03-17 | Auto merge of #138595 - jhpratt:rollup-09pvfzu, r=jhpratt | bors | -24/+18 |
| 2025-03-17 | Flatten and simplify some control flow | Yotam Ofek | -24/+18 |
| 2025-03-17 | Use `strip_{prefix|suffix}` instead of `{starts|ends}_with`+indexing | Yotam Ofek | -2/+2 |
| 2025-03-15 | Auto merge of #138532 - matthiaskrgr:rollup-mgcynqu, r=matthiaskrgr | bors | -1/+2 |
| 2025-03-15 | Move codec module back into middle | Michael Goulet | -71/+93 |
| 2025-03-15 | Fold visit into ty | Michael Goulet | -20/+18 |
| 2025-03-15 | Squash fold into ty | Michael Goulet | -25/+28 |
| 2025-03-14 | resolve: Avoid some unstable iteration | Vadim Petrochenkov | -1/+2 |
| 2025-03-14 | Represent diagnostic side effects as dep nodes | John Kåre Alsaker | -14/+2 |
| 2025-03-13 | Rollup merge of #138126 - compiler-errors:rtn-for-sugg, r=oli-obk | Matthias Krüger | -25/+92 |
| 2025-03-13 | Rollup merge of #138109 - Kohei316:feat/rust-doc-precise-capturing-arg, r=aDo... | Matthias Krüger | -0/+2 |
| 2025-03-13 | Auto merge of #138416 - Manishearth:rollup-fejor9p, r=Manishearth | bors | -12/+14 |