| Age | Commit message (Expand) | Author | Lines |
| 2023-02-25 | Add test for VecDeque::append ZST capacity overflow | pommicket | -0/+14 |
| 2023-01-17 | refactor[alloc]: remove unused box syntax feature | joboet | -1/+0 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -1/+1 |
| 2023-01-04 | Update rand in the stdlib tests, and remove the getrandom feature from it | Thom Chiovoloni | -348/+1 |
| 2022-12-30 | Replace libstd, libcore, liballoc in line comments. | jonathanCogan | -1/+1 |
| 2022-12-24 | add lib tests for vec::IntoIter alignment issues | Ralf Jung | -2/+27 |
| 2022-12-08 | Apply review feedback; Fix no_global_oom_handling build | Scott McMurray | -3/+13 |
| 2022-12-08 | Make `VecDeque::from_iter` O(1) from `vec(_deque)::IntoIter` | Scott McMurray | -0/+26 |
| 2022-11-28 | Auto merge of #102991 - Sp00ph:master, r=scottmcm | bors | -6/+7 |
| 2022-11-23 | Add `#![deny(unsafe_op_in_unsafe_fn)]` in liballoc tests | Thom Chiovoloni | -7/+38 |
| 2022-11-22 | Rollup merge of #104647 - RalfJung:alloc-strict-provenance, r=thomcc | Manish Goregaokar | -6/+8 |
| 2022-11-22 | add test for issue 104726 | The 8472 | -0/+12 |
| 2022-11-20 | enable fuzzy_provenance_casts lint in liballoc | Ralf Jung | -6/+8 |
| 2022-11-20 | Update VecDeque implementation | Markus Everling | -6/+7 |
| 2022-11-20 | Rollup merge of #104435 - scottmcm:iter-repeat-n, r=thomcc | Yuki Okushi | -0/+8 |
| 2022-11-18 | Remove Vec/Rc storage reuse opt | clubby789 | -30/+0 |
| 2022-11-17 | Auto merge of #104205 - clubby789:grow-rc, r=thomcc | bors | -0/+30 |
| 2022-11-15 | generalize str.contains() tests to a range of haystack sizes | The 8472 | -5/+21 |
| 2022-11-15 | `VecDeque::resize` should re-use the buffer in the passed-in element | Scott McMurray | -0/+8 |
| 2022-11-14 | Add `Vec` storage optimization to `Arc` and add tests | clubby789 | -0/+30 |
| 2022-10-05 | Add regression test for lifetimes in alloc internals autotraits | David Tolnay | -0/+297 |
| 2022-10-04 | Rollup merge of #101642 - SkiFire13:fix-inplace-collection-leak, r=the8472 | Dylan DPC | -30/+35 |
| 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-09-10 | Update test | Giacomo Stevanato | -33/+34 |
| 2022-09-10 | Adapt inplace collection leak test to check for no leaks | Giacomo Stevanato | -16/+20 |
| 2022-08-31 | fix into_iter on ZST | Ralf Jung | -0/+6 |
| 2022-08-30 | Rollup merge of #95376 - WaffleLapkin:drain_keep_rest, r=dtolnay | Dylan DPC | -0/+60 |
| 2022-08-22 | Rollup merge of #100820 - WaffleLapkin:use_ptr_is_aligned_methods, r=scottmcm | Dylan DPC | -4/+5 |
| 2022-08-22 | Rollup merge of #99386 - AngelicosPhosphoros:add_retain_test_maybeuninit, r=J... | Dylan DPC | -0/+45 |
| 2022-08-21 | Make use of `pointer::is_aligned[_to]` | Maybe Waffle | -4/+5 |
| 2022-08-21 | Replace most uses of `pointer::offset` with `add` and `sub` | Maybe Waffle | -5/+5 |
| 2022-07-27 | Auto merge of #98553 - the8472:next_chunk_opt, r=Mark-Simulacrum | bors | -0/+11 |
| 2022-07-26 | add test for vec::IntoIter::next_chunk() impl | The 8472 | -0/+11 |
| 2022-07-17 | Add tests that check `Vec::retain` predicate execution order. | AngelicosPhosphoros | -0/+45 |
| 2022-07-15 | Stabilize `core::ffi::CStr`, `alloc::ffi::CString`, and friends | Josh Triplett | -1/+0 |
| 2022-07-14 | Rollup merge of #98315 - joshtriplett:stabilize-core-ffi-c, r=Mark-Simulacrum | Dylan DPC | -1/+0 |
| 2022-07-13 | Stabilize `core::ffi:c_*` and rexport in `std::ffi` | Josh Triplett | -1/+0 |
| 2022-07-10 | Auto merge of #95295 - CAD97:layout-isize, r=scottmcm | bors | -311/+142 |
| 2022-07-01 | Rollup merge of #98585 - cuviper:covariant-thinbox, r=thomcc | Dylan DPC | -0/+7 |
| 2022-06-27 | Make `ThinBox<T>` covariant in `T` | Josh Stone | -0/+7 |
| 2022-06-27 | liballoc tests: avoid int2ptr cast | Ralf Jung | -1/+1 |
| 2022-06-19 | Fix documentation for with_capacity and reserve families of methods | jmaargh | -0/+9 |
| 2022-06-08 | Stabilize `const_intrinsic_copy` | Yuki Okushi | -1/+0 |
| 2022-06-05 | Add vec::Drain{,Filter}::keep_rest | Maybe Waffle | -0/+60 |
| 2022-06-04 | Rollup merge of #96642 - thomcc:thinbox-zst-ugh, r=yaahc | Dylan DPC | -0/+232 |
| 2022-05-29 | Use Box::new() instead of box syntax in alloc tests | est31 | -12/+12 |
| 2022-05-27 | Avoid zero-sized allocs in ThinBox if T and H are both ZSTs. | Thom Chiovoloni | -0/+232 |
| 2022-05-26 | improve case conversion happy path | Conrad Ludgate | -0/+14 |