| Age | Commit message (Expand) | Author | Lines |
| 2023-04-02 | Auto merge of #109701 - Amanieu:binaryheap_retain, r=ChrisDenton | bors | -1/+0 |
| 2023-03-30 | Auto merge of #105587 - tgross35:once-cell-min, r=m-ou-se | bors | -1/+0 |
| 2023-03-29 | Stabilize a portion of 'once_cell' | Trevor Gross | -1/+0 |
| 2023-03-28 | Remove ~const from alloc | Jubilee Young | -1/+0 |
| 2023-03-28 | Stabilize `binary_heap_retain` | Amanieu d'Antras | -1/+0 |
| 2023-03-27 | Rollup merge of #97506 - JohnTitor:stabilize-nonnull-slice-from-raw-parts, r=... | Matthias Krüger | -2/+1 |
| 2023-01-17 | refactor[alloc]: remove unused box syntax feature | joboet | -1/+0 |
| 2022-11-23 | Add `#![deny(unsafe_op_in_unsafe_fn)]` in liballoc tests | Thom Chiovoloni | -0/+1 |
| 2022-11-20 | enable fuzzy_provenance_casts lint in liballoc | Ralf Jung | -0/+1 |
| 2022-10-05 | Add regression test for lifetimes in alloc internals autotraits | David Tolnay | -0/+4 |
| 2022-09-29 | Stabilize `nonnull_slice_from_raw_parts` | Yuki Okushi | -2/+1 |
| 2022-09-28 | Rollup merge of #102232 - Urgau:stabilize-bench_black_box, r=TaKO8Ki | Yuki Okushi | -1/+0 |
| 2022-09-27 | Stabilize bench_black_box | Urgau | -1/+0 |
| 2022-09-23 | Stabilize const `BTree{Map,Set}::new` | Nilstrieb | -1/+1 |
| 2022-08-30 | Rollup merge of #95376 - WaffleLapkin:drain_keep_rest, r=dtolnay | Dylan DPC | -0/+1 |
| 2022-08-21 | Make use of `pointer::is_aligned[_to]` | Maybe Waffle | -0/+1 |
| 2022-07-27 | Auto merge of #98553 - the8472:next_chunk_opt, r=Mark-Simulacrum | bors | -0/+1 |
| 2022-07-26 | add test for vec::IntoIter::next_chunk() impl | The 8472 | -0/+1 |
| 2022-07-15 | Stabilize `core::ffi::CStr`, `alloc::ffi::CString`, and friends | Josh Triplett | -1/+0 |
| 2022-07-13 | Stabilize `core::ffi:c_*` and rexport in `std::ffi` | Josh Triplett | -1/+0 |
| 2022-06-08 | Stabilize `const_intrinsic_copy` | Yuki Okushi | -1/+0 |
| 2022-06-05 | Add vec::Drain{,Filter}::keep_rest | Maybe Waffle | -0/+1 |
| 2022-05-27 | Avoid zero-sized allocs in ThinBox if T and H are both ZSTs. | Thom Chiovoloni | -0/+3 |
| 2022-05-02 | Rollup merge of #94126 - ssomers:alloc_prep_1, r=Mark-Simulacrum | Yuki Okushi | -1/+0 |
| 2022-04-14 | library: Use type aliases to make `CStr(ing)` in libcore/liballoc unstable | Vadim Petrochenkov | -0/+1 |
| 2022-04-14 | library: Move `CStr` to libcore, and `CString` to liballoc | Vadim Petrochenkov | -0/+2 |
| 2022-04-08 | Add ThinBox type for 1 stack pointer sized heap allocated trait objects | Jane Lusby | -0/+2 |
| 2022-04-08 | add `<[[T; N]]>::flatten`, `<[[T; N]]>::flatten_mut`, and `Vec::<[T; N]>::int... | Cyborus04 | -0/+1 |
| 2022-03-11 | Classify BinaryHeap & LinkedList unit tests as such | Stein Somers | -1/+0 |
| 2022-02-13 | stabilize const_ptr_offset | SaltyKitkat | -1/+0 |
| 2022-02-07 | Add {floor,ceil}_char_boundary methods to str | ltdk | -0/+1 |
| 2022-01-17 | Stabilize vec_spare_capacity | Amanieu d'Antras | -1/+0 |
| 2022-01-07 | Implement panic::update_hook | Badel2 | -0/+1 |
| 2021-12-23 | Constify `Box<T, A>` methods | woppopo | -0/+12 |
| 2021-11-18 | Make slice->str conversion and related functions const | Maybe Waffle | -0/+1 |
| 2021-10-04 | Rollup merge of #87993 - kornelski:try_reserve_stable, r=joshtriplett | Jubilee | -1/+0 |
| 2021-10-04 | Stabilize try_reserve | Kornel | -1/+0 |
| 2021-09-30 | implement advance_(back_)_by on more iterators | The8472 | -0/+1 |
| 2021-09-17 | Stabilize `Iterator::map_while` | Maybe Waffle | -1/+0 |
| 2021-08-17 | Constified `Default` implementations | Deadbeef | -0/+1 |
| 2021-08-14 | Assign FIXMEs to me and remove obsolete ones | Deadbeef | -2/+0 |
| 2021-08-13 | allow incomplete features for now | Deadbeef | -0/+2 |
| 2021-08-13 | Moved ui test | Deadbeef | -0/+3 |
| 2021-08-07 | Use assert_matches! instead of if let {} else | Kornel | -0/+1 |
| 2021-07-24 | Hide allocator details from TryReserveError | Kornel | -0/+1 |
| 2021-06-02 | Stabilize `vecdeque_binary_search` | SOFe | -1/+0 |
| 2021-04-28 | Stabilize vec_extend_from_within | Amanieu d'Antras | -1/+0 |
| 2021-03-30 | Rollup merge of #82331 - frol:feat/std-binary-heap-as-slice, r=Amanieu | Dylan DPC | -0/+1 |
| 2021-03-24 | Revert "Revert stabilizing integer::BITS." | Mara Bos | -1/+0 |
| 2021-03-19 | Auto merge of #71780 - jcotton42:string_remove_matches, r=joshtriplett | bors | -0/+1 |