| Age | Commit message (Expand) | Author | Lines |
| 2024-11-25 | replace placeholder version | Boxy | -2/+2 |
| 2024-11-20 | Rollup merge of #132732 - gavincrawford:as_ptr_attribute, r=Urgau | Jacob Pratt | -0/+2 |
| 2024-11-16 | clean up const stability around UB checks | Ralf Jung | -2/+2 |
| 2024-11-13 | Auto merge of #132883 - LaihoE:vectorized_is_sorted, r=thomcc | bors | -1/+17 |
| 2024-11-11 | Tag relevant functions with #[rustc_as_ptr] attribute | gavincrawford | -0/+2 |
| 2024-11-11 | vectorize slice::is_sorted | Laiho | -1/+17 |
| 2024-11-10 | elem_offset / subslice_range: use addr() instead of 'as usize' | Ralf Jung | -4/+4 |
| 2024-11-05 | Add new unstable feature `const_eq_ignore_ascii_case` | okaneco | -2/+22 |
| 2024-11-05 | add const_eval_select macro to reduce redundancy | Ralf Jung | -128/+124 |
| 2024-11-03 | Rollup merge of #132423 - RalfJung:const-eval-align-offset, r=dtolnay | Jubilee | -117/+131 |
| 2024-11-03 | Auto merge of #132479 - compiler-errors:fx-feat-yeet, r=fee1-dead | bors | -1/+1 |
| 2024-11-03 | Rename the FIXMEs, remove a few that dont matter anymore | Michael Goulet | -1/+1 |
| 2024-11-03 | remove const-support for align_offset | Ralf Jung | -117/+131 |
| 2024-11-03 | add const_panic macro to make it easier to fall back to non-formatting panic ... | Ralf Jung | -49/+19 |
| 2024-11-01 | remove some unnecessary rustc_allow_const_fn_unstable | Ralf Jung | -2/+0 |
| 2024-10-25 | Re-do recursive const stability checks | Ralf Jung | -5/+15 |
| 2024-10-23 | Rollup merge of #130991 - LaihoE:vectorized_slice_contains, r=Noratrieb | León Orell Valerian Liehr | -0/+26 |
| 2024-10-23 | vectorized SliceContains | Laiho | -0/+26 |
| 2024-10-15 | update bootstrap configs | Josh Stone | -16/+0 |
| 2024-10-15 | replace placeholder version | Josh Stone | -13/+13 |
| 2024-10-14 | Stabilise 'const_make_ascii' | Gabriel Bjørnager Jensen | -2/+4 |
| 2024-10-14 | Rollup merge of #131384 - saethlin:precondition-tests, r=ibraheemdev | Matthias Krüger | -2/+2 |
| 2024-10-09 | Allow zero-size reads/writes on null pointers | Ben Kimock | -2/+2 |
| 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 |