about summary refs log tree commit diff
path: root/src/librustdoc/json/import_finder.rs
AgeCommit message (Collapse)AuthorLines
2024-09-07rustdoc: use a single box to store Attributes and ItemKindMichael Howell-1/+1
2024-07-29Reformat `use` declarations.Nicholas Nethercote-4/+2
The previous commit updated `rustfmt.toml` appropriately. This commit is the outcome of running `x fmt --all` with the new formatting options.
2023-01-22rustdoc: Use `DefId(Map,Set)` instead of `FxHash(Map,Set)`Vadim Petrochenkov-5/+5
Not all uses are converted, a few cases iterating through maps/sets and requiring nontrivial changes are kept.
2022-08-29Rustdoc-Json: Retain Stripped Modules when they are imported, not when they ↵Nixon Enraght-Moony-0/+38
have items. Fixes #101103 Fixes #100973