| Age | Commit message (Expand) | Author | Lines |
| 2024-08-27 | library: Stabilize new_uninit for Box, Rc, and Arc | Jubilee Young | -27/+16 |
| 2024-08-25 | Rollup merge of #129416 - workingjubilee:partial-move-from-stabilization, r=d... | Matthias Krüger | -3/+6 |
| 2024-08-23 | library: Move unstable API of new_uninit to new features | Jubilee Young | -3/+6 |
| 2024-08-14 | add Box::as_ptr and Box::as_mut_ptr methods | Ralf Jung | -0/+89 |
| 2024-08-07 | Rollup merge of #125048 - dingxiangfei2009:stable-deref, r=amanieu | Matthias Krüger | -1/+4 |
| 2024-08-03 | Rollup merge of #127586 - zachs18:more-must-use, r=cuviper | Matthias Krüger | -0/+2 |
| 2024-07-31 | PinCoerceUnsized trait into core | Xiangfei Ding | -1/+4 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -10/+7 |
| 2024-07-26 | Fix doc nits | John Arundel | -6/+8 |
| 2024-07-22 | Rollup merge of #127415 - AljoschaMeyer:master, r=dtolnay | 许杰友 Jieyou Xu (Joe) | -2/+81 |
| 2024-07-22 | Use given allocator instad of Global | Aljoscha Meyer | -2/+2 |
| 2024-07-13 | Rollup merge of #127446 - zachs18:miri-stdlib-leaks-core-alloc, r=Mark-Simula... | Jubilee | -0/+6 |
| 2024-07-10 | Clarify/add `must_use` messages for more `into_raw*` functions of `alloc` types. | Zachary S | -0/+2 |
| 2024-07-06 | Mitigate focused memory leaks in `alloc` doctests for Miri. | Zachary S | -0/+6 |
| 2024-07-06 | Fix them doc examples some more | Aljoscha Meyer | -2/+2 |
| 2024-07-06 | Fix doc examples | Aljoscha Meyer | -2/+2 |
| 2024-07-06 | Run formatter on alloc/src/boxed.rs | Aljoscha Meyer | -4/+10 |
| 2024-07-06 | Add missing try_new_uninit_slice_in and try_new_zeroed_slice_in | Aljoscha Meyer | -2/+75 |
| 2024-07-04 | Add more checks for pointers with vtable meta | Maybe Waffle | -3/+3 |
| 2024-06-22 | Replace `WriteCloneIntoRaw` with `CloneToUninit`. | Kevin Reid | -2/+4 |
| 2024-06-11 | remove cfg(bootstrap) | Pietro Albini | -2/+1 |
| 2024-06-11 | replace version placeholder | Pietro Albini | -12/+12 |
| 2024-05-20 | Add the impls for Box<[T]>: IntoIterator | Michael Goulet | -0/+86 |
| 2024-05-05 | alloc: implement FromIterator for Box<str> | Caleb Sander | -0/+48 |
| 2024-04-17 | Rollup merge of #122201 - coolreader18:doc-clone_from, r=dtolnay | Matthias Krüger | -4/+22 |
| 2024-04-16 | Box::into_raw: make Miri understand that this is a box-to-raw cast | Ralf Jung | -2/+6 |
| 2024-03-25 | Require DerefPure for patterns | Michael Goulet | -1/+4 |
| 2024-03-19 | Only split by-ref/by-move futures for async closures | Michael Goulet | -5/+3 |
| 2024-03-18 | add_retag: ensure box-to-raw-ptr casts are preserved for Miri | Ralf Jung | -11/+6 |
| 2024-03-09 | miri: do not apply aliasing restrictions to Box with custom allocator | Ralf Jung | -10/+14 |
| 2024-03-08 | Document overrides of `clone_from()` | Noa | -4/+22 |
| 2024-03-05 | only set noalias on Box with the global allocator | Ralf Jung | -0/+3 |
| 2024-02-22 | Auto merge of #118634 - Jules-Bertholet:box-allocator-static, r=Amanieu | bors | -9/+3 |
| 2024-02-06 | Harmonize blanket implementations for AsyncFn* traits | Michael Goulet | -0/+29 |
| 2024-02-05 | Rollup merge of #113833 - WiktorPrzetacznik:master, r=dtolnay | Matthias Krüger | -8/+8 |
| 2024-01-26 | Fix outdated comment on Box | bjorn3 | -2/+1 |
| 2024-01-02 | Adjust library tests for unused_tuple_struct_fields -> dead_code | Jake Goulding | -0/+1 |
| 2023-12-04 | Remove useless `'static` bounds on `Box` allocator | Jules Bertholet | -9/+3 |
| 2023-11-04 | docs: clarify explicitly freeing heap allocated memory | alpharush | -3/+11 |
| 2023-10-31 | delegate box error provide | Bugen Zhao | -0/+4 |
| 2023-10-21 | Update boxed.rs | Gimbles | -1/+1 |
| 2023-10-20 | s/generator/coroutine/ | Oli Scherer | -2/+2 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -5/+5 |
| 2023-08-14 | avoid transmuting Box when we can just cast raw pointers instead | Ralf Jung | -2/+2 |
| 2023-07-18 | std::error::Error -> Trait Implementations: lifetimes consistency improvement | WiktorPrzetacznik | -8/+8 |
| 2023-07-13 | Eliminate ZST allocations in `Box` and `Vec` | Amanieu d'Antras | -15/+29 |
| 2023-06-16 | remove box_free and replace with drop impl | DrMeepster | -1/+9 |
| 2023-04-29 | `cfg`-gate `BoxFromSlice` trait | Jules Bertholet | -0/+1 |
| 2023-04-26 | Loosen `From<&[T]> for Box<[T]>` bound to T: Clone | Jules Bertholet | -8/+30 |
| 2023-04-16 | fix alloc | Deadbeef | -12/+6 |