| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-02-11 | Remove the common prelude module | Eric Huss | -1/+1 | |
| This fixes the issues described in https://github.com/rust-lang/rust/issues/136102. Primarily, this resolves some issues with how the documentation for the prelude is generated: - It avoids showing "unstable" for macros in the prelude that are actually stable. - Avoids duplication of some pages due to the previous lack of `doc(no_inline)`. - Makes the different edition preludes consistent, and sets a pattern that can be used by future editions. We may need to rearrange these modules in the future if we decide to remove anything from the prelude again. If we do, I think we should look into a different solution that avoids the documentation problems. | ||||
| 2024-04-08 | rustdoc-search: single result for items with multiple paths | Michael Howell | -3/+33 | |
| This change uses the same "exact" paths as trait implementors and type alias inlining to track items with multiple reachable paths. This way, if you search for `vec`, you get only the `std` exports of it, and not the one from `alloc`. It still includes all the items in the search index so that you can search for them by all available paths. For example, try `core::option` and `std::option`, and notice that the results page doesn't show duplicates, but still shows all the items in their respective crates. | ||||
| 2023-06-14 | Add "vec new" test | Guillaume Gomez | -9/+20 | |
| 2023-06-09 | Update rustdoc-js* format | Guillaume Gomez | -2/+1 | |
| 2023-01-14 | rustdoc: update search test cases | Michael Howell | -2/+3 | |
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -0/+9 | |
