| Age | Commit message (Expand) | Author | Lines |
| 2021-12-27 | Move `ExternalLocation` to `clean::types` | Noah Lev | -19/+19 |
| 2021-12-27 | rustdoc: Remove some unnecessary `cache` parameters | Noah Lev | -24/+13 |
| 2021-12-27 | Rename `rustdoc::html::render::cache` to `search_index` | Noah Lev | -6/+6 |
| 2021-12-27 | intra-doc: Use an enum to represent URL fragments | Noah Lev | -78/+113 |
| 2021-12-27 | Remove needless `return` | Noah Lev | -1/+1 |
| 2021-12-27 | rustdoc: Preserve rendering of macro_rules matchers when possible | David Tolnay | -6/+55 |
| 2021-12-25 | Remove unneeded call to `collect` | Roc Yu | -5/+6 |
| 2021-12-25 | Remove `String` allocation in loop | Roc Yu | -3/+1 |
| 2021-12-25 | Auto merge of #92262 - notriddle:notriddle/unused-hash, r=jyn514 | bors | -11/+2 |
| 2021-12-25 | Auto merge of #92227 - Kobzol:rustdoc-doc-hidden, r=jyn514 | bors | -16/+7 |
| 2021-12-24 | Auto merge of #92229 - fee1-dead:fix-rustdoc-const-drop, r=dtolnay | bors | -20/+35 |
| 2021-12-24 | rustdoc: remove unused Hash impl | Michael Howell | -11/+2 |
| 2021-12-23 | Clean up NestedAttributesExt trait/implementation | Roc Yu | -10/+15 |
| 2021-12-23 | Auto merge of #92222 - nnethercote:rm-global_allocator-rustc-rustdoc, r=alexc... | bors | -15/+3 |
| 2021-12-23 | Do not display `~const Drop` in rustdoc | Deadbeef | -20/+35 |
| 2021-12-23 | Auto merge of #92177 - GuillaumeGomez:pattern-matching-outside-loop, r=camelid | bors | -6/+8 |
| 2021-12-23 | Rustdoc: use `is_doc_hidden` method on more places | Jakub Beránek | -16/+7 |
| 2021-12-23 | fix rustdoc | lcnr | -11/+17 |
| 2021-12-23 | Auto merge of #92167 - pierwill:chalk-update, r=jackh726 | bors | -2/+2 |
| 2021-12-23 | Remove useless `#[global_allocator]` from rustc and rustdoc. | Nicholas Nethercote | -15/+3 |
| 2021-12-23 | Rollup merge of #92146 - willcrichton:example-analyzer, r=jyn514 | Matthias Krüger | -7/+16 |
| 2021-12-22 | Add some JSDoc comments to rustdoc JS | Jacob Hoffman-Andrews | -30/+170 |
| 2021-12-22 | Upgrade `tracing-subscriber` | pierwill | -1/+1 |
| 2021-12-22 | Update chalk to 0.75.0 | pierwill | -1/+1 |
| 2021-12-21 | Remove apparently unnecessary conditional in `doc_value` | Noah Lev | -3/+0 |
| 2021-12-21 | Move pattern matching outside of the loop | Guillaume Gomez | -6/+8 |
| 2021-12-21 | Auto merge of #92095 - vacuus:master, r=jyn514 | bors | -29/+22 |
| 2021-12-20 | Move duplicates removal when generating results instead of when displaying them | Guillaume Gomez | -11/+13 |
| 2021-12-20 | Auto merge of #91900 - pitaj:fix-91714, r=jyn514 | bors | -118/+81 |
| 2021-12-19 | Remove 'need_backline' field of `DocFragment` | Roc Yu | -29/+18 |
| 2021-12-19 | Omit check of a successive line in loop | vacuus | -6/+10 |
| 2021-12-19 | Auto merge of #92099 - matthiaskrgr:rollup-4gwv67m, r=matthiaskrgr | bors | -24/+7 |
| 2021-12-19 | Rollup merge of #92081 - jyn514:need-backline, r=GuillaumeGomez | Matthias Krüger | -7/+3 |
| 2021-12-19 | Rollup merge of #92077 - jyn514:remove-collapsed, r=GuillaumeGomez | Matthias Krüger | -17/+4 |
| 2021-12-19 | Auto merge of #91957 - nnethercote:rm-SymbolStr, r=oli-obk | bors | -61/+54 |
| 2021-12-19 | Auto merge of #91871 - camelid:urlpartsbuilder, r=GuillaumeGomez | bors | -17/+192 |
| 2021-12-19 | Rollup merge of #92082 - jyn514:remove-from-iterator, r=jyn514 | Matthias Krüger | -12/+16 |
| 2021-12-18 | Write code directly instead of using FromIterator | Noah Lev | -12/+16 |
| 2021-12-18 | Remove unnecessary `need_backline` function | Joshua Nelson | -7/+3 |
| 2021-12-18 | Remove `collapsed` field | Joshua Nelson | -17/+4 |
| 2021-12-18 | Rollup merge of #92032 - petrochenkov:extblockpath, r=oli-obk | Matthias Krüger | -6/+6 |
| 2021-12-18 | Rollup merge of #91977 - GuillaumeGomez:unify-search-code, r=jsha | Matthias Krüger | -110/+102 |
| 2021-12-18 | hir: Do not introduce dummy type names for `extern` blocks in def paths | Vadim Petrochenkov | -6/+6 |
| 2021-12-17 | Auto merge of #91812 - camelid:assoc-const-lazy, r=GuillaumeGomez | bors | -20/+31 |
| 2021-12-16 | Auto merge of #92003 - matthiaskrgr:rollup-obgv0rt, r=matthiaskrgr | bors | -0/+30 |
| 2021-12-16 | Make loop more clear by renaming variables | Guillaume Gomez | -4/+8 |
| 2021-12-16 | Clean up search code and unify function returned values | Guillaume Gomez | -108/+96 |
| 2021-12-16 | Rollup merge of #91987 - jsha:docdocgoose, r=jyn514 | Matthias Krüger | -0/+30 |
| 2021-12-16 | Auto merge of #91833 - klensy:rd-minus-alloc, r=jyn514 | bors | -11/+6 |
| 2021-12-16 | Rollup merge of #91958 - jsha:rust-logo, r=GuillaumeGomez | Matthias Krüger | -18/+14 |