| Age | Commit message (Expand) | Author | Lines |
| 2025-04-04 | Rollup merge of #139328 - GuillaumeGomez:fix-panic-output-137970, r=fmease | Matthias Krüger | -3/+5 |
| 2025-04-03 | Rollup merge of #139255 - GuillaumeGomez:unused-var-merged-doctest, r=fmease | Matthias Krüger | -1/+0 |
| 2025-04-03 | Use `eprint!` instead of `eprintln!` | Guillaume Gomez | -1/+1 |
| 2025-04-03 | Fix 2024 edition doctest panic output | Guillaume Gomez | -3/+5 |
| 2025-04-02 | Remove unused variables generated in merged doctests | Guillaume Gomez | -1/+0 |
| 2025-04-02 | Move methods from `Map` to `TyCtxt`, part 5. | Nicholas Nethercote | -1/+1 |
| 2025-04-01 | Move `ast::Item::ident` into `ast::ItemKind`. | Nicholas Nethercote | -4/+4 |
| 2025-03-27 | Only take outer attributes into account when generating content between first... | Guillaume Gomez | -120/+19 |
| 2025-03-27 | Remove recursion in `check_item` | Guillaume Gomez | -16/+4 |
| 2025-03-27 | Add new regression test for doctest | Guillaume Gomez | -0/+131 |
| 2025-03-27 | Improve code | Guillaume Gomez | -34/+29 |
| 2025-03-27 | Add `expect` to the list of non-crate attributes for doctest generation | Guillaume Gomez | -1/+1 |
| 2025-03-27 | Improve code comment | Guillaume Gomez | -2/+2 |
| 2025-03-27 | Improve comment and test for generated doctest with code comments | Guillaume Gomez | -3/+26 |
| 2025-03-27 | Correctly handle line comments in attributes and generate extern crates | Guillaume Gomez | -18/+62 |
| 2025-03-27 | Correctly handle `fn main` in macro | Guillaume Gomez | -18/+35 |
| 2025-03-27 | Greatly simplify doctest parsing and information extraction | Guillaume Gomez | -323/+136 |
| 2025-03-23 | Rollup merge of #138293 - clubby789:doc-cfg-gate, r=GuillaumeGomez | Michael Goulet | -1/+1 |
| 2025-03-18 | Move `hir::Item::ident` into `hir::ItemKind`. | Nicholas Nethercote | -17/+33 |
| 2025-03-12 | Move methods from `Map` to `TyCtxt`, part 4. | Nicholas Nethercote | -1/+1 |
| 2025-03-10 | Rollup merge of #138281 - saethlin:mergeable-doctests-stacksize, r=GuillaumeG... | Matthias Krüger | -9/+10 |
| 2025-03-10 | rustdoc: Gate unstable `doc(cfg())` predicates | clubby789 | -1/+1 |
| 2025-03-10 | Fix O(tests) stack usage in edition 2024 mergeable doctests | Ben Kimock | -9/+10 |
| 2025-03-10 | doctests: build test bundle and harness separately | Michael Howell | -12/+25 |
| 2025-03-07 | Rollup merge of #138107 - yotamofek:pr/rustdoc/clippy, r=GuillaumeGomez | Matthias Krüger | -2/+2 |
| 2025-03-06 | `x clippy src/librustdoc --fix` | Yotam Ofek | -2/+2 |
| 2025-03-06 | `librustdoc`: flatten nested ifs | Yotam Ofek | -3/+2 |
| 2025-02-28 | Fully qualify `Result` in generated doctest code | Guillaume Gomez | -2/+2 |
| 2025-02-24 | Fix rustdoc and clippy | Jana Dönszelmann | -1/+1 |
| 2025-02-18 | Rollup merge of #136599 - yotamofek:pr/rustdoc-more-joined, r=GuillaumeGomez | Matthias Krüger | -6/+10 |
| 2025-02-18 | Move methods from `Map` to `TyCtxt`, part 2. | Nicholas Nethercote | -1/+1 |
| 2025-02-17 | librustdoc: more usages of `Joined::joined` | Yotam Ofek | -6/+10 |
| 2025-02-17 | Overhaul the `intravisit::Map` trait. | Nicholas Nethercote | -3/+3 |
| 2025-02-03 | tree-wide: parallel: Fully removed all `Lrc`, replaced with `Arc` | Askar Safin | -5/+5 |
| 2025-01-29 | Improve code and add missing docs for new `doctest::extracted` module | Guillaume Gomez | -1/+10 |
| 2025-01-29 | Move extracted doctest code and types into its own file | Guillaume Gomez | -0/+132 |
| 2025-01-13 | rustdoc: Eliminate `AttributesExt` | Noah Lev | -1/+3 |
| 2025-01-12 | rustdoc: Extract `AttributesExt::cfg` trait method as function | Noah Lev | -3/+2 |
| 2024-12-25 | Improve rustdoc code | Guillaume Gomez | -1/+1 |
| 2024-12-20 | Move test into the `tests.rs` file | Guillaume Gomez | -0/+22 |
| 2024-12-16 | Rollup merge of #134260 - GuillaumeGomez:doctest-attrs, r=notriddle | Matthias Krüger | -18/+42 |
| 2024-12-16 | Remove unneeded handling of backlines in doctest attributes | Guillaume Gomez | -2/+0 |
| 2024-12-16 | Also handle cases where attributes are unclosed | Guillaume Gomez | -16/+40 |
| 2024-12-15 | Add hir::Attribute | Jonathan Dönszelmann | -1/+1 |
| 2024-12-13 | Correctly handle comments in attributes in doctests source code | Guillaume Gomez | -0/+2 |
| 2024-11-28 | Fix new clippy lints | Guillaume Gomez | -1/+1 |
| 2024-10-30 | Rollup merge of #132210 - notriddle:notriddle/doctest-span-hack, r=GuillaumeG... | Jubilee | -1/+13 |
| 2024-10-30 | Rollup merge of #131096 - GuillaumeGomez:rm-no_unused, r=notriddle | 许杰友 Jieyou Xu (Joe) | -4/+0 |
| 2024-10-26 | rustdoc: make doctest span tweak a 2024 edition change | Michael Howell | -1/+13 |
| 2024-10-24 | Do not consider nested functions as `main` function even if named `main` in d... | Guillaume Gomez | -4/+11 |