| Age | Commit message (Expand) | Author | Lines |
| 2024-12-16 | split attributes | Jonathan Dönszelmann | -6/+5 |
| 2024-12-16 | try fix hir-attrs perf | Jonathan Dönszelmann | -1/+1 |
| 2024-12-15 | Add hir::Attribute | Jonathan Dönszelmann | -51/+49 |
| 2024-12-14 | (Re-)Implement impl_trait_in_bindings | Michael Goulet | -2/+6 |
| 2024-12-12 | Fix tools | Michael Goulet | -0/+3 |
| 2024-12-10 | Remove more traces of anonymous ADTs | Michael Goulet | -3/+0 |
| 2024-12-06 | remove eq for attributes | Jonathan Dönszelmann | -13/+0 |
| 2024-12-02 | Rollup merge of #133746 - oli-obk:push-xwyrylxmrtvq, r=jieyouxu | Guillaume Gomez | -1/+1 |
| 2024-12-02 | Change `AttrArgs::Eq` into a struct variant | Oli Scherer | -1/+1 |
| 2024-12-01 | Rollup merge of #133589 - voidc:remove-array-len, r=boxyuwu | Jacob Pratt | -22/+25 |
| 2024-11-30 | Remove hir::ArrayLen, introduce ConstArgKind::Infer | Dominik Stolz | -22/+25 |
| 2024-11-28 | uplift fold_regions to rustc_type_ir | lcnr | -1/+2 |
| 2024-11-28 | Fix new clippy lints | Guillaume Gomez | -27/+27 |
| 2024-11-26 | Rollup merge of #133443 - fmease:rm-dead-eff-code-ii, r=compiler-errors | Guillaume Gomez | -8/+0 |
| 2024-11-25 | Remove dead code stemming from the old effects desugaring (II) | León Orell Valerian Liehr | -8/+0 |
| 2024-11-25 | Refactor `where` predicates, and reserve for attributes support | Frank King | -5/+5 |
| 2024-11-20 | Auto merge of #133212 - lcnr:questionable-uwu, r=compiler-errors | bors | -9/+7 |
| 2024-11-19 | rustdoc: yeet `TypingEnv::from_param_env` | lcnr | -9/+7 |
| 2024-11-19 | move `fn is_item_raw` to `TypingEnv` | lcnr | -1/+1 |
| 2024-11-19 | Introduce `min_generic_const_args` and directly represent paths | Noah Lev | -7/+8 |
| 2024-11-18 | use `TypingEnv` when no `infcx` is available | lcnr | -6/+11 |
| 2024-11-13 | Rollup merge of #132302 - fmease:rustdoc-better-vis-for-macro-decl, r=notriddle | Matthias Krüger | -32/+14 |
| 2024-11-13 | rustdoc: Treat decl macros like other items | León Orell Valerian Liehr | -32/+14 |
| 2024-11-11 | [perf] rustdoc: Perform less work when cleaning parenthesized generic args | León Orell Valerian Liehr | -25/+19 |
| 2024-11-06 | Clean middle generics using paren sugar if trait has rustc_paren_sugar | Michael Goulet | -1/+1 |
| 2024-11-05 | Auto merge of #132580 - compiler-errors:globs, r=Noratrieb | bors | -16/+20 |
| 2024-11-04 | Rename `DocContext::is_json` into `DocContext::is_json_output` | Guillaume Gomez | -2/+2 |
| 2024-11-04 | Fix invalid coverage computation when `--output-format=json` is enabled | Guillaume Gomez | -2/+2 |
| 2024-11-04 | ty::BrK -> ty::BoundRegionKind::K | Michael Goulet | -4/+8 |
| 2024-11-04 | ty::KContainer -> ty::AssocItemContainer::K | Michael Goulet | -12/+12 |
| 2024-11-03 | Rename the FIXMEs, remove a few that dont matter anymore | Michael Goulet | -2/+2 |
| 2024-11-01 | rustdoc: Directly use rustc_abi instead of reexports | Jubilee Young | -4/+3 |
| 2024-10-30 | Remap impl-trait lifetimes on HIR instead of AST lowering. | Camille GILLOT | -1/+1 |
| 2024-10-29 | update tools | lcnr | -5/+5 |
| 2024-10-26 | expand: Stop using artificial `ast::Item` for macros loaded from metadata | Vadim Petrochenkov | -20/+6 |
| 2024-10-26 | Rollup merge of #132168 - fee1-dead-contrib:fxclean, r=compiler-errors | Matthias Krüger | -1/+0 |
| 2024-10-26 | Effects cleanup | Deadbeef | -1/+0 |
| 2024-10-25 | tcx.is_const_fn doesn't work the way it is described, remove it | Ralf Jung | -2/+2 |
| 2024-10-25 | Re-do recursive const stability checks | Ralf Jung | -10/+6 |
| 2024-10-24 | Implement const effect predicate in new solver | Michael Goulet | -1/+3 |
| 2024-10-24 | Remove associated type based effects logic | Michael Goulet | -10/+5 |
| 2024-10-23 | nightly feature tracking: get rid of the per-feature bool fields | Ralf Jung | -3/+3 |
| 2024-10-22 | Represent TraitBoundModifiers as distinct parts in HIR | Michael Goulet | -9/+14 |
| 2024-10-19 | Fix tests | Michael Goulet | -3/+3 |
| 2024-10-16 | Auto merge of #131797 - matthiaskrgr:rollup-lzpze2k, r=matthiaskrgr | bors | -7/+6 |
| 2024-10-16 | Rollup merge of #131691 - GuillaumeGomez:intra-doc-link-filter-out-2, r=notri... | Matthias Krüger | -7/+6 |
| 2024-10-16 | Rollup merge of #131594 - fmease:rustdoc-mv-obj-safe-dyn-compat, r=notriddle | Matthias Krüger | -1/+1 |
| 2024-10-16 | rustdoc: Rename "object safe" to "dyn compatible" | León Orell Valerian Liehr | -1/+1 |
| 2024-10-14 | Delay ambiguous intra-doc link resolution after `Cache` has been populated | Guillaume Gomez | -7/+6 |
| 2024-10-14 | Move trait bound modifiers into hir::PolyTraitRef | Michael Goulet | -4/+4 |