| Age | Commit message (Expand) | Author | Lines |
| 2024-07-01 | rustc_data_structures: fix wrong markdown syntax | Michael Howell | -2/+2 |
| 2024-06-28 | rustc_data_structures: Explicitly check for 64-bit atomics support | John Paul Adrian Glaubitz | -8/+6 |
| 2024-06-27 | Auto merge of #126907 - glaubitz:sparc-fixes, r=nagisa | bors | -6/+6 |
| 2024-06-26 | Auto merge of #120924 - xFrednet:rfc-2383-stabilization-party, r=Urgau,blyxyas | bors | -1/+1 |
| 2024-06-25 | Auto merge of #126326 - eggyal:ununsafe-StableOrd, r=michaelwoerister | bors | -17/+54 |
| 2024-06-25 | RFC 2383: Stabilize `lint_reasons` :tada: | xFrednet | -1/+1 |
| 2024-06-24 | Replace `MaybeUninit::uninit_array()` with array repeat expression. | Kevin Reid | -2/+1 |
| 2024-06-24 | rustc_data_structures: Use portable AtomicU64 on 32-bit SPARC | John Paul Adrian Glaubitz | -6/+6 |
| 2024-06-22 | Ensure careful consideration is given by impls | Alan Egerton | -7/+43 |
| 2024-06-20 | Convert some module-level `//` and `///` comments to `//!`. | Nicholas Nethercote | -2/+3 |
| 2024-06-16 | Use Linux file locking on Redox | Jeremy Soller | -0/+4 |
| 2024-06-12 | Address code review comments on the comments | Amanda Stjerna | -1/+4 |
| 2024-06-12 | Revise documentation after @lqd's comments | Amanda Stjerna | -8/+4 |
| 2024-06-12 | Remove a few unnecessary constructions | Amanda Stjerna | -4/+7 |
| 2024-06-12 | Slightly faster version of `find_state` | Amanda Stjerna | -24/+27 |
| 2024-06-12 | Docstring for for `Annotation` | Amanda Stjerna | -2/+12 |
| 2024-06-12 | Formatting, weird because I just did that | Amanda Stjerna | -2/+3 |
| 2024-06-12 | Simplify path compression logic | Amanda Stjerna | -17/+2 |
| 2024-06-12 | Documentation fixes | Amanda Stjerna | -8/+7 |
| 2024-06-12 | Extend SCC construction to enable extra functionality | Amanda Stjerna | -129/+472 |
| 2024-06-12 | Un-unsafe the `StableOrd` trait | Alan Egerton | -16/+17 |
| 2024-06-12 | Require any function with a tait in its signature to actually constrain a hid... | Oli Scherer | -11/+16 |
| 2024-05-30 | Apply x clippy --fix and x fmt | r0cky | -8/+8 |
| 2024-02-20 | Stabilize `LazyCell` and `LazyLock` (`lazy_cell`) | Peter Jaszkowiak | -1/+0 |
| 2024-05-09 | Remove `enum_from_u32`. | Nicholas Nethercote | -38/+0 |
| 2024-05-09 | Remove `vec_linked_list`. | Nicholas Nethercote | -71/+0 |
| 2024-05-09 | Remove `TinyList`. | Nicholas Nethercote | -236/+0 |
| 2024-05-09 | Document `Pu128`. | Nicholas Nethercote | -1/+3 |
| 2024-05-08 | Remove `extern crate tracing`. | Nicholas Nethercote | -4/+6 |
| 2024-05-07 | Reorder top-level crate items. | Nicholas Nethercote | -29/+29 |
| 2024-05-07 | Remove `macro_use` from `stable_hasher`. | Nicholas Nethercote | -4/+6 |
| 2024-05-03 | Auto merge of #123441 - saethlin:fixed-len-file-names, r=oli-obk | bors | -26/+102 |
| 2024-05-02 | Auto merge of #124521 - Mark-Simulacrum:bootstrap-bump, r=albertlarsan68 | bors | -0/+6 |
| 2024-05-02 | Add `UnordMap::try_insert` | Waffle Lapkin | -0/+7 |
| 2024-05-01 | Mark more entries in rustc_data_structures as no_inline for docs | Mark Rousskov | -0/+6 |
| 2024-04-30 | Give an item related to issue 27438 a more meaningful name | León Orell Valerian Liehr | -2/+2 |
| 2024-04-29 | Remove `extern crate rustc_macros` from numerous crates. | Nicholas Nethercote | -4/+4 |
| 2024-04-22 | Stabilize generic `NonZero`. | Markus Reiter | -1/+0 |
| 2024-04-22 | Stabilize the size of incr comp object file names | Ben Kimock | -26/+102 |
| 2024-04-18 | Add tests for predecessor-aware `VecGraph` mode | Maybe Waffle | -0/+33 |
| 2024-04-15 | Add `graph::depth_first_search_as_undirected` | Maybe Waffle | -0/+26 |
| 2024-04-15 | Make `graph::DepthFirstSearch` accept `G` by value | Maybe Waffle | -13/+13 |
| 2024-04-15 | Add an opt-in to store incoming edges in `VecGraph` + some docs | Maybe Waffle | -56/+192 |
| 2024-04-15 | Rollup merge of #123934 - WaffleLapkin:graph-mini-refactor, r=fmease | 许杰友 Jieyou Xu (Joe) | -126/+59 |
| 2024-04-15 | Use RPITIT for `Successors` and `Predecessors` traits | Maybe Waffle | -30/+8 |
| 2024-04-14 | Make `depth_first_search` into a standalone function | Maybe Waffle | -5/+10 |
| 2024-04-14 | Document `ControlFlowGraph` | Maybe Waffle | -4/+2 |
| 2024-04-14 | Rename `WithNumEdges` => `NumEdges` and `WithStartNode` => `StartNode` | Maybe Waffle | -16/+16 |
| 2024-04-14 | Merge `{With,Graph}{Successors,Predecessors}` into `{Successors,Predecessors}` | Maybe Waffle | -88/+53 |
| 2024-04-14 | Merge `WithNumNodes` into DirectedGraph | Maybe Waffle | -40/+27 |