| Age | Commit message (Expand) | Author | Lines |
| 2021-12-19 | Auto merge of #91957 - nnethercote:rm-SymbolStr, r=oli-obk | bors | -1/+1 |
| 2021-12-15 | Remove `SymbolStr`. | Nicholas Nethercote | -1/+1 |
| 2021-12-11 | rustdoc: Pretty-print assoc const defaults on-demand | Noah Lev | -1/+3 |
| 2021-11-26 | Rename `Type::ResolvedPath` to `Type::Path` | Noah Lev | -4/+4 |
| 2021-11-25 | Stop re-exporting `Type::ResolvedPath` | Noah Lev | -5/+9 |
| 2021-11-24 | Remove `ResolvedPath.did` | Noah Lev | -9/+5 |
| 2021-11-07 | rustdoc: Use `ty::ImplPolarity` instead of custom enum | Noah Lev | -3/+3 |
| 2021-11-07 | Use an enum to record polarity in `clean::Impl` | Noah Lev | -2/+5 |
| 2021-11-07 | rustdoc: Refactor `Impl.{synthetic,blanket_impl}` into enum | Noah Lev | -11/+9 |
| 2021-11-06 | rustdoc: Remove redundant `Impl.span` field | Noah Lev | -1/+0 |
| 2021-10-29 | Fix invalid handling of generics | Guillaume Gomez | -0/+1 |
| 2021-10-26 | Remove unneeded into_iter | Guillaume Gomez | -1/+1 |
| 2021-10-25 | Fix clippy lints in librustdoc | Guillaume Gomez | -1/+1 |
| 2021-10-18 | rustdoc: Box `ty` field of `GenericParamDefKind::Const` | Noah Lev | -1/+1 |
| 2021-10-18 | rustdoc: Box `default` fields of `GenericParamDefKind` | Noah Lev | -2/+2 |
| 2021-10-09 | Auto merge of #88379 - camelid:cleanup-clean, r=jyn514 | bors | -14/+23 |
| 2021-10-08 | Remove special-casing of never primitive in rustdoc-json-types | Loïc BRANSTETT | -1/+0 |
| 2021-10-04 | Rollup merge of #88234 - hkmatsumoto:rustdoc-impls-for-primitive, r=jyn514 | Manish Goregaokar | -1/+2 |
| 2021-10-02 | Replace all uses of `path.res.def_id()` with `path.def_id()` | Noah Lev | -4/+4 |
| 2021-09-30 | Remove unnecessary `Box` in `Type::QPath` | Noah Lev | -1/+1 |
| 2021-09-30 | Use `Path` instead of `Type` in `PolyTrait` | Noah Lev | -14/+18 |
| 2021-09-30 | Make `Impl.trait_` a `Path`, not a `Type` | Noah Lev | -1/+6 |
| 2021-09-29 | Remove Never variant from clean::Type enum | Guillaume Gomez | -1/+1 |
| 2021-09-29 | Don't ignore impls for primitive types | Hirochika Matsumoto | -1/+2 |
| 2021-09-12 | Remove `Type::ResolvedPath.is_generic` | Noah Lev | -1/+1 |
| 2021-09-12 | Fix broken handling of primitive items | Joshua Nelson | -3/+1 |
| 2021-09-05 | Auto merge of #88604 - camelid:rustdoc-lifetime-bounds, r=GuillaumeGomez | bors | -1/+3 |
| 2021-09-03 | rustdoc: Box `GenericArg::Const` to reduce enum size | Noah Lev | -1/+1 |
| 2021-09-02 | rustdoc: Clean up handling of lifetime bounds | Noah Lev | -1/+3 |
| 2021-09-02 | Auto merge of #88522 - camelid:box-paren-output, r=jyn514 | bors | -1/+1 |
| 2021-08-31 | Box `GenericArgs::Parenthesized.output` | Noah Lev | -1/+1 |
| 2021-08-29 | Use the correct type for Enum variant tuples | Guillaume Gomez | -1/+12 |
| 2021-07-25 | Add generic arg infer | kadmin | -0/+1 |
| 2021-07-05 | rustdoc: Use `impl_id` and `for_` DefId's for Blanket item id | Justus K | -2/+2 |
| 2021-07-05 | rustdoc: Add `PrimitiveType` to `ItemId::Primitive` | Justus K | -1/+1 |
| 2021-07-05 | rustdoc: Convert new ItemId's to real Json Ids | Justus K | -3/+18 |
| 2021-07-05 | Revert "rustdoc: Store DefId's in ItemId on heap for decreasing Item's size" | Justus K | -11/+10 |
| 2021-07-05 | rustdoc: Store DefId's in ItemId on heap for decreasing Item's size | Justus K | -10/+11 |
| 2021-07-05 | rustdoc: Replace `FakeDefId` with new `ItemId` type | Justus K | -14/+12 |
| 2021-06-19 | rustdoc: Introduce new `DynTrait` type for better representation of trait obj... | Justus K | -4/+25 |
| 2021-06-18 | rustdoc: Render `for<'_>` lifetimes in trait objects | Justus K | -1/+1 |
| 2021-06-18 | rustdoc: Render `for<'_>` lifetimes in front of where bound | Justus K | -1/+2 |
| 2021-06-09 | Rollup merge of #85957 - BoxyUwU:rustdoc-const-generic-defaults, r=oli-obk | Yuki Okushi | -1/+3 |
| 2021-06-05 | Rollup merge of #84466 - jyn514:prim-str, r=GuillaumeGomez | Yuki Okushi | -1/+1 |
| 2021-06-03 | rustdoc- Show defaults on const generics | Ellen | -1/+3 |
| 2021-05-20 | Remove `PrimitiveType::as_str` | Joshua Nelson | -1/+1 |
| 2021-05-19 | rustdoc: render `<Self as X>::Y` type casts properly | Justus K | -1/+1 |
| 2021-05-15 | Minimize amount of fake `DefId`s used in rustdoc | Justus K | -3/+2 |
| 2021-05-14 | Box `Impl.blanket_impl` to reduce size | Noah Lev | -1/+1 |
| 2021-05-12 | Auto merge of #83813 - cbeuw:remap-std, r=michaelwoerister | bors | -12/+11 |