| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2024-10-15 | Rollup merge of #131095 - GuillaumeGomez:switch-to-env-variables, r=notriddle | Matthias Krüger | -26/+16 |
| 2024-10-06 | Handle `librustdoc` cases of `rustc::potential_query_instability` lint | ismailarilik | -3/+3 |
| 2024-10-03 | Rollup merge of #130419 - nnethercote:streamline-HirCollector, r=GuillaumeGomez | Matthias Krüger | -20/+10 |
| 2024-10-01 | Remove usage of `allow(unused)` attribute on `no_run` doctests | Guillaume Gomez | -4/+0 |
| 2024-10-01 | Use environment variables instead of command line arguments for merged doctests | Guillaume Gomez | -26/+16 |
| 2024-09-28 | Rename `standalone` doctest attribute into `standalone-crate` | Guillaume Gomez | -1/+1 |
| 2024-09-25 | Remove `HirCollector::map`. | Nicholas Nethercote | -11/+4 |
| 2024-09-25 | Remove `HirCollector::sess`. | Nicholas Nethercote | -10/+7 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -11/+11 |
| 2024-09-19 | rustdoc: use the correct span for doctests | Michael Howell | -11/+2 |
| 2024-09-07 | librustdoc::config: removed Input from Options | EtomicBomb | -6/+5 |
| 2024-08-31 | Rollup merge of #129774 - nnethercote:rm-extern-crate-tracing-remainder, r=Gu... | Matthias Krüger | -0/+1 |
| 2024-08-30 | Remove `#[macro_use] extern crate tracing` from rustdoc. | Nicholas Nethercote | -0/+1 |
| 2024-08-29 | Fix clippy lints | Guillaume Gomez | -4/+6 |
| 2024-08-20 | Remove unneeded conversion to `DefId` for `ExtraInfo` | Guillaume Gomez | -1/+1 |
| 2024-08-17 | Remove useless attributes in merged doctest generated code | Guillaume Gomez | -4/+0 |
| 2024-08-13 | Run fmt | Guillaume Gomez | -6/+7 |
| 2024-08-13 | Move `is_multiple_tests` argument into `RunnableDocTest` | Guillaume Gomez | -7/+3 |
| 2024-08-13 | Unify naming of `DocTest` | Guillaume Gomez | -18/+17 |
| 2024-08-13 | Remove need for `unsafe` code in merged doctests | Guillaume Gomez | -5/+10 |
| 2024-08-13 | Improve code readability | Guillaume Gomez | -0/+9 |
| 2024-08-13 | If there are crate attributes, we prevent doctest to be merged with others | Guillaume Gomez | -27/+4 |
| 2024-08-13 | Rename `DocTest` into `DocTestBuilder` | Guillaume Gomez | -9/+14 |
| 2024-08-13 | Reduce merged doctest source code size | Guillaume Gomez | -25/+7 |
| 2024-08-13 | Add documentation on `DocTest` and `RunnableDoctest` structs | Guillaume Gomez | -0/+2 |
| 2024-08-13 | Improve code by removing unneeded function arguments | Guillaume Gomez | -2/+0 |
| 2024-08-13 | Correctly handle macros using `$crate` in merged doctests | Guillaume Gomez | -3/+14 |
| 2024-08-13 | If no argument is provided to merged doctests binary, they will be run in the... | Guillaume Gomez | -6/+4 |
| 2024-08-13 | Correctly handle `internal_features` attribute | Guillaume Gomez | -1/+13 |
| 2024-08-13 | Don't change indent in merged doctests | Guillaume Gomez | -1/+1 |
| 2024-08-13 | Make merged doctests run in their own process | Guillaume Gomez | -15/+81 |
| 2024-08-13 | Fix weird memory allocation failure in merged doctests by storing doctest lis... | Guillaume Gomez | -8/+8 |
| 2024-08-13 | Don't merge doctests with `#[global_allocator]` | Guillaume Gomez | -75/+70 |
| 2024-08-13 | Greatly improve handling of doctests attributes, making it possible to merge ... | Guillaume Gomez | -45/+112 |
| 2024-08-13 | Simplify `has_main_fn` to be a boolean instead of a `Option<Span>` | Guillaume Gomez | -29/+31 |
| 2024-08-13 | Correctly handle doctests with invalid AST | Guillaume Gomez | -4/+17 |
| 2024-08-13 | If there is any AST error with a doctest, we make it a standalone test | Guillaume Gomez | -88/+182 |
| 2024-08-13 | Prevent merged doctests to break stdin if the generated file is too big | Guillaume Gomez | -3/+8 |