| Age | Commit message (Expand) | Author | Lines |
| 2023-07-25 | Use a builder instead of boolean/option arguments | Oli Scherer | -8/+5 |
| 2023-07-25 | Improve performance of `first_non_private` | Guillaume Gomez | -22/+18 |
| 2023-07-25 | Auto merge of #113958 - lukas-code:doc-links, r=GuillaumeGomez,petrochenkov | bors | -16/+31 |
| 2023-07-24 | Cache qpath first public result | Guillaume Gomez | -27/+50 |
| 2023-07-24 | Revert "Remove needs for transmute" | Guillaume Gomez | -28/+20 |
| 2023-07-24 | Remove needs for transmute | Guillaume Gomez | -20/+28 |
| 2023-07-24 | Re-add missing generics in `first_non_private` | Guillaume Gomez | -3/+23 |
| 2023-07-24 | Add support for `--document-hidden-items` in `first_non_private` | Guillaume Gomez | -1/+2 |
| 2023-07-24 | Add test for private items | Guillaume Gomez | -0/+3 |
| 2023-07-24 | Correctly handle `super` and `::` | Guillaume Gomez | -1/+10 |
| 2023-07-24 | Rename `first_not_private` into `first_non_private` | Guillaume Gomez | -2/+2 |
| 2023-07-24 | Improve code readability | Guillaume Gomez | -32/+27 |
| 2023-07-24 | If re-export is private, get the next item until a public one is found or exp... | Guillaume Gomez | -3/+93 |
| 2023-07-24 | Fix missing attribute merge on glob foreign re-exports | Guillaume Gomez | -18/+39 |
| 2023-07-22 | fix doc links on `extern crate` items | Lukas Markeffsky | -14/+23 |
| 2023-07-22 | rustdoc: handle cross-crate RPITITs correctly | León Orell Valerian Liehr | -3/+6 |
| 2023-07-22 | improve debuggability | Lukas Markeffsky | -2/+8 |
| 2023-07-20 | Rollup merge of #113883 - steffahn:rustdoc-search-crate-selector-padding, r=G... | Matthias Krüger | -9/+0 |
| 2023-07-20 | Rollup merge of #113835 - lcnr:assemble-candidates-considering-self-ty, r=com... | Matthias Krüger | -28/+27 |
| 2023-07-20 | Rollup merge of #110765 - wackbyte:fix-defaultness-position, r=fmease,Guillau... | Matthias Krüger | -4/+4 |
| 2023-07-20 | XSimplifiedType to SimplifiedType::X | lcnr | -28/+27 |
| 2023-07-20 | Remove adjustments that used to be necessary for search's crate selector appe... | Frank Steffahn | -9/+0 |
| 2023-07-20 | Auto merge of #108714 - estebank:ice_dump, r=oli-obk | bors | -3/+6 |
| 2023-07-19 | Rollup merge of #113785 - GuillaumeGomez:tests/rustdoc/issue-105735-fix, r=no... | Dylan DPC | -17/+41 |
| 2023-07-19 | On nightly, dump ICE backtraces to disk | Esteban Küber | -3/+6 |
| 2023-07-18 | Rollup merge of #113823 - GuillaumeGomez:fix-results-search-alias-display, r=... | Matthias Krüger | -19/+15 |
| 2023-07-18 | Fix display of aliases in rustdoc search results | Guillaume Gomez | -19/+15 |
| 2023-07-18 | support for mips32r6 as a target_arch value | chenx97 | -0/+1 |
| 2023-07-18 | support for mips64r6 as a target_arch value | chenx97 | -0/+1 |
| 2023-07-18 | Remove unneeded `Option<Symbol>` in `foreign_items` | Guillaume Gomez | -4/+3 |
| 2023-07-18 | Fix invalid display of inlined re-export | Guillaume Gomez | -17/+42 |
| 2023-07-18 | Auto merge of #113801 - compiler-errors:iter-instantiated, r=oli-obk | bors | -2/+2 |
| 2023-07-18 | Auto merge of #113574 - GuillaumeGomez:rustdoc-json-strip-hidden-impl, r=aDot... | bors | -24/+57 |
| 2023-07-17 | Rename arg_iter to iter_instantiated | Michael Goulet | -2/+2 |
| 2023-07-15 | Auto merge of #113606 - jyn514:parallel-compiler-cleanup, r=cjgillot | bors | -3/+0 |
| 2023-07-15 | Auto merge of #113697 - GuillaumeGomez:rm-unneeded-externallocation-handling,... | bors | -6/+1 |
| 2023-07-14 | rustdoc: rename to `src-script.js` | Michael Howell | -0/+0 |
| 2023-07-14 | rustdoc: use `src` consistently over `source` in JavaScript | Michael Howell | -21/+21 |
| 2023-07-14 | rustdoc: use `src` consistently over `source` in code | Michael Howell | -55/+55 |
| 2023-07-14 | Correctly handle `--document-hidden-items` | Guillaume Gomez | -29/+56 |
| 2023-07-14 | Remove unneeded handling for `ExternalLocation::Unknown` in rustdoc render co... | Guillaume Gomez | -6/+1 |
| 2023-07-14 | Strip impl if not re-exported and is doc(hidden) | Guillaume Gomez | -1/+7 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -96/+94 |
| 2023-07-13 | Rollup merge of #113623 - GuillaumeGomez:add-jump-to-doc, r=notriddle | Matthias Krüger | -25/+84 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -50/+53 |
| 2023-07-12 | Add jump to doc | Guillaume Gomez | -25/+84 |
| 2023-07-11 | Don't require each rustc_interface tool to opt-in to parallel_rustc support | jyn | -3/+0 |
| 2023-07-08 | Replace RPITIT current impl with new strategy that lowers as a GAT | Santiago Pastorino | -3/+2 |
| 2023-07-03 | remove TypeWellFormedFromEnv | Michael Goulet | -2/+1 |
| 2023-07-03 | Rollup merge of #113285 - GuillaumeGomez:display-long-inline-cfg, r=notriddle | Guillaume Gomez | -3/+3 |