| Age | Commit message (Expand) | Author | Lines |
| 2024-10-14 | replace placeholder version | Josh Stone | -13/+13 |
| 2024-10-09 | stabilize `{slice,array}::from_mut` | ultrabear | -1/+2 |
| 2024-10-05 | Stabilize `const_slice_split_at_mut` and `const_slice_first_last_chunk` | onestacked | -7/+14 |
| 2024-10-04 | Rollup merge of #130403 - eduardosm:stabilize-const_slice_from_raw_parts_mut,... | Jubilee | -1/+2 |
| 2024-10-04 | Rollup merge of #131177 - workingjubilee:stabilize-const-mut-referees, r=tgro... | Jubilee | -4/+8 |
| 2024-10-02 | library: Stabilize `const_slice_first_last` | Jubilee Young | -4/+8 |
| 2024-10-01 | Stabilize `const_slice_from_raw_parts_mut` | Eduardo Sánchez Muñoz | -1/+2 |
| 2024-09-28 | make ptr metadata functions callable from stable const fn | Ralf Jung | -1/+0 |
| 2024-09-25 | Use `&raw` in the standard library | Josh Stone | -6/+6 |
| 2024-09-25 | fix some cfg logic around optimize_for_size and 16-bit targets | Ralf Jung | -11/+11 |
| 2024-09-24 | Auto merge of #129587 - Voultapher:opt-for-size-variants-of-sort-impls, r=cuv... | bors | -59/+202 |
| 2024-09-24 | Mark and implement 'make_ascii_uppercase' and 'make_ascii_lowercase' in '[u8]... | Gabriel Bjørnager Jensen | -4/+14 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -5/+5 |
| 2024-09-18 | [Clippy] Swap `manual_retain` to use diagnostic items instead of paths | GnomedDev | -0/+1 |
| 2024-09-15 | also stabilize const_refs_to_cell | Ralf Jung | -1/+1 |
| 2024-09-15 | const_refs_to_cell: dont let mutable references sneak past the interior mutab... | Ralf Jung | -1/+1 |
| 2024-09-12 | Rollup merge of #130101 - RalfJung:const-cleanup, r=fee1-dead | Matthias Krüger | -17/+9 |
| 2024-09-09 | Fix slice::first_mut docs | James C. Wise | -1/+1 |
| 2024-09-08 | remove const_slice_index annotations, it never had a feature gate anyway | Ralf Jung | -11/+0 |
| 2024-09-08 | add FIXME(const-hack) | Ralf Jung | -6/+9 |
| 2024-09-04 | Use non-overlapping swap for inner heapsort loop | Lukas Bergdoll | -3/+1 |
| 2024-09-04 | Select tiny sorts for 16-bit platforms | Lukas Bergdoll | -13/+20 |
| 2024-09-04 | Shrink heapsort further by combining sift_down loops | Lukas Bergdoll | -26/+22 |
| 2024-09-04 | Drop bubble_sort | Lukas Bergdoll | -41/+3 |
| 2024-09-03 | replace placeholder version | Boxy | -3/+3 |
| 2024-09-02 | clarify language around non-null ptrs in slice::raw | oskgo | -8/+8 |
| 2024-09-01 | Rollup merge of #128495 - joboet:more_memcmp, r=scottmcm | Matthias Krüger | -10/+33 |
| 2024-08-29 | Use simpler branchy swap logic in tiny merge sort | Lukas Bergdoll | -42/+13 |
| 2024-08-27 | Use last swap optimization in bubblesort | Lukas Bergdoll | -9/+18 |
| 2024-08-26 | Convert cfg blocks to cfg_if | Lukas Bergdoll | -79/+68 |
| 2024-08-26 | Reduce code duplication by moving partition_lomuto_branchless_simple into qui... | Lukas Bergdoll | -79/+39 |
| 2024-08-25 | Tweak some attributes to improve panic_immediate_abort | Ben Kimock | -3/+4 |
| 2024-08-25 | Add binary-size optimized variants for stable and unstable sort as well as se... | Lukas Bergdoll | -33/+284 |
| 2024-08-12 | core: make documentation clearer, rename slice comparison specialization trait | joboet | -15/+25 |
| 2024-08-10 | Rollup merge of #128273 - Voultapher:improve-ord-violation-help, r=workingjub... | Guillaume Gomez | -49/+73 |
| 2024-08-09 | Fix linkchecker issue | Lukas Bergdoll | -1/+1 |
| 2024-08-05 | Correct the const stabilization of `<[T]>::last_chunk` | Mike Hommey | -1/+1 |
| 2024-08-03 | Apply review comments to PartialOrd section | Lukas Bergdoll | -7/+7 |
| 2024-08-01 | Hide internal sort module | Lukas Bergdoll | -0/+1 |
| 2024-08-01 | core: use `compare_bytes` for more slice element types | joboet | -6/+19 |
| 2024-07-31 | Apply review comments | Lukas Bergdoll | -45/+50 |
| 2024-07-30 | Rewrite binary search implementation | Amanieu d'Antras | -31/+44 |
| 2024-07-29 | Rollup merge of #128307 - ojeda:unescaped_backticks, r=GuillaumeGomez | Matthias Krüger | -2/+2 |
| 2024-07-29 | Remove spurious backticks detected by `rustdoc::unescaped_backticks` | Miguel Ojeda | -2/+2 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -79/+37 |
| 2024-07-28 | Rollup merge of #127765 - bitfield:fix_stdlib_doc_nits, r=dtolnay | Guillaume Gomez | -30/+39 |
| 2024-07-28 | Rollup merge of #128279 - slanterns:is_sorted, r=dtolnay | Matthias Krüger | -8/+3 |
| 2024-07-28 | stabilize `is_sorted` | Slanterns | -8/+3 |
| 2024-07-27 | Rollup merge of #125897 - RalfJung:from-ref, r=Amanieu | Trevor Gross | -2/+2 |
| 2024-07-27 | Improve panic sections for sort*, sort_unstable* and select_nth_unstable* | Lukas Bergdoll | -12/+15 |