| Age | Commit message (Expand) | Author | Lines |
| 2023-05-27 | Clean up usage of `cx.tcx` when `tcx` is already set into a variable | Guillaume Gomez | -2/+2 |
| 2023-05-04 | IAT: Rustdoc integration | León Orell Valerian Liehr | -1/+6 |
| 2023-05-02 | resolve: One more attempt to simplify `module_children` | Vadim Petrochenkov | -1/+2 |
| 2023-04-16 | Spelling librustdoc | Josh Soref | -1/+1 |
| 2023-04-14 | Rollup merge of #110279 - GuillaumeGomez:compiler-macro-derive, r=notriddle | Matthias Krüger | -10/+16 |
| 2023-04-13 | Correctly handle built-in compiler proc-macros as proc-macro and not macro | Guillaume Gomez | -10/+16 |
| 2023-04-12 | resolve: Pre-compute non-reexport module children | Vadim Petrochenkov | -1/+1 |
| 2023-04-08 | rustc_middle: Remove `Option` from `module_reexports` query | Vadim Petrochenkov | -1/+0 |
| 2023-04-08 | resolve: Preserve reexport chains in `ModChild`ren | Vadim Petrochenkov | -1/+1 |
| 2023-03-21 | rustdoc: Cleanup parent module tracking for doc links | Vadim Petrochenkov | -52/+23 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -12/+7 |
| 2023-02-16 | change usages of type_of to bound_type_of | Kyle Matsuda | -4/+20 |
| 2023-02-15 | Use more let chain | Guillaume Gomez | -15/+12 |
| 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-22 | rustdoc: Use `DefId(Map,Set)` instead of `FxHash(Map,Set)` | Vadim Petrochenkov | -10/+6 |
| 2023-01-17 | rustdoc: Fix glob import inlining | Vadim Petrochenkov | -3/+19 |
| 2023-01-14 | change impl_trait_ref query to return EarlyBinder; remove bound_impl_trait_re... | Kyle Matsuda | -1/+1 |
| 2023-01-14 | change usages of impl_trait_ref to bound_impl_trait_ref | Kyle Matsuda | -1/+1 |
| 2023-01-10 | Remove unneeded ItemId::Primitive variant | Guillaume Gomez | -1/+3 |
| 2022-12-15 | Rollup merge of #105743 - nnethercote:SimplifiedType-cleanups, r=lcnr | Matthias Krüger | -1/+1 |
| 2022-12-15 | Merge `SimplifiedTypeGen<D>` into `SimplifiedType`. | Nicholas Nethercote | -1/+1 |
| 2022-12-12 | Round 2: make clean_middle_ty take a binder | Oli Scherer | -4/+4 |
| 2022-12-12 | Round 1: add some binders (fails due to losing bound vars and then rebinding ... | Oli Scherer | -1/+2 |
| 2022-11-21 | Unreserve braced enum variants in value namespace | Vadim Petrochenkov | -1/+1 |
| 2022-11-08 | Auto merge of #104013 - notriddle:notriddle/rustdoc-sizeof, r=GuillaumeGomez | bors | -2/+2 |
| 2022-11-05 | rustdoc: use `ThinVec` and `Box<str>` to shrink `clean::ItemKind` | Michael Howell | -2/+2 |
| 2022-11-04 | rustdoc: create helper `GenericParamDef::lifetime` | León Orell Valerian Liehr | -4/+1 |
| 2022-11-04 | rustdoc: render late-bound lifetimes in generic parameter list of cross-crate... | León Orell Valerian Liehr | -2/+14 |
| 2022-11-03 | Remove rustdoc clean::Visibility type | Guillaume Gomez | -3/+2 |
| 2022-11-02 | Auto merge of #103690 - GuillaumeGomez:visibility-on-demand, r=notriddle | bors | -22/+7 |
| 2022-10-30 | Rollup merge of #103746 - notriddle:notriddle/incoherent-dyn-trait, r=Guillau... | Michael Howell | -0/+15 |
| 2022-10-30 | Make rustdoc Item::visibility computed on-demand | Guillaume Gomez | -22/+7 |
| 2022-10-29 | rustdoc: add support for incoherent impls on structs and traits | Michael Howell | -0/+15 |
| 2022-10-29 | rustdoc: Split effective visibilities from rustc from similar data built by r... | Vadim Petrochenkov | -2/+2 |
| 2022-10-29 | Auto merge of #102233 - petrochenkov:effvis, r=jackh726 | bors | -2/+2 |
| 2022-10-26 | privacy: Rename "accessibility levels" to "effective visibilities" | Vadim Petrochenkov | -2/+2 |
| 2022-10-25 | Don't merge inline doc comments for impl blocks | Guillaume Gomez | -8/+35 |
| 2022-10-09 | ImplItemKind::TyAlias => ImplItemKind::Type | Michael Goulet | -1/+1 |
| 2022-09-27 | rustdoc: remove `clean::TraitWithExtraInfo` | Michael Howell | -4/+0 |
| 2022-09-01 | Auto merge of #100869 - nnethercote:replace-ThinVec, r=spastorino | bors | -2/+3 |
| 2022-08-29 | Replace `rustc_data_structures::thin_vec::ThinVec` with `thin_vec::ThinVec`. | Nicholas Nethercote | -2/+3 |
| 2022-08-28 | Remove Attrs type alias | Guillaume Gomez | -8/+6 |
| 2022-08-25 | Fix missing cfg propagation for reexports | Guillaume Gomez | -1/+1 |
| 2022-08-16 | rustdoc: box ItemKind::Trait | Michael Howell | -1/+1 |
| 2022-08-16 | rustdoc: factor Type::QPath out into its own box | Michael Howell | -1/+1 |
| 2022-08-10 | remove Clean trait implementation for ty::AssocItem | Guillaume Gomez | -5/+6 |
| 2022-08-10 | Rollup merge of #100319 - GuillaumeGomez:rm-clean-impls-2, r=Dylan-DPC | Matthias Krüger | -4/+4 |
| 2022-08-08 | remove Clean trait implementation for hir::Generics | Guillaume Gomez | -3/+3 |
| 2022-08-08 | remove Clean trait implementation for hir::ImplItem | Guillaume Gomez | -2/+2 |