| Age | Commit message (Expand) | Author | Lines |
| 2021-10-10 | Add #[must_use] to alloc constructors | John Kugelman | -0/+12 |
| 2021-10-09 | Remove unnecessary hyphen | Tim McNamara | -1/+1 |
| 2021-10-09 | Simplify wording | Tim McNamara | -4/+4 |
| 2021-10-08 | Add documentation to boxed conversions | Tim McNamara | -0/+41 |
| 2021-09-17 | Fix missing `no_global_oom_handling` cfg-gating | Gary Guo | -0/+2 |
| 2021-08-05 | add Box::try_new_uninit_slice for symmetry | The8472 | -0/+33 |
| 2021-08-05 | remove cfg gate on `use RawVec` since it is now also used in fallible code | The8472 | -1/+0 |
| 2021-08-05 | add Box::try_new_zeroed_slice() | The8472 | -0/+32 |
| 2021-06-30 | Remove alloc/malloc/calloc/realloc doc aliases | Amanieu d'Antras | -3/+0 |
| 2021-06-12 | Remove "generic type" in boxed.rs | Deadbeef | -1/+1 |
| 2021-05-05 | alloc: Add unstable Cfg feature `no-global_oom_handling` | John Ericson | -2/+33 |
| 2021-05-02 | Change 'NULL' to 'null' | Brent Kerby | -1/+1 |
| 2021-04-10 | fix incorrect from_raw_in doctest | Ralf Jung | -1/+1 |
| 2021-02-12 | Remove unnecessary lint allow attrs on example | Mikail Bagishov | -2/+0 |
| 2021-02-10 | Rollup merge of #80438 - crlf0710:box_into_inner, r=m-ou-se | Yuki Okushi | -0/+17 |
| 2021-02-09 | Add `Box::into_inner`. | Charles Lew | -0/+17 |
| 2021-02-06 | Prefer match intead of combinators to make some Box function inlineable | Lzu Tao | -2/+12 |
| 2021-01-31 | Rollup merge of #80945 - sdroege:downcast-send-sync, r=m-ou-se | Jonas Schievink | -0/+33 |
| 2021-01-30 | Rollup merge of #79023 - yoshuawuyts:stream, r=KodrAus | Yuki Okushi | -0/+14 |
| 2021-01-22 | Add doc aliases for memory allocations | Yoshua Wuyts | -2/+5 |
| 2021-01-22 | Add `core::stream::Stream` | Yoshua Wuyts | -0/+14 |
| 2021-01-12 | move WriteCloneIntoRaw into alloc::alloc | Josh Stone | -23/+1 |
| 2021-01-12 | Add Box::downcast() for dyn Any + Send + Sync | Sebastian Dröge | -0/+33 |
| 2021-01-11 | Specialize Box clones to try to avoid locals | Josh Stone | -2/+28 |
| 2021-01-02 | Auto merge of #77832 - camelid:remove-manual-link-resolves, r=jyn514 | bors | -2/+0 |
| 2020-12-31 | Remove many unnecessary manual link resolves from library | Camelid | -2/+0 |
| 2020-12-31 | More inline, doc fixes | Manish Goregaokar | -1/+2 |
| 2020-12-31 | Reuse Box::try_new_*_in() in Box::new_*_in() | Manish Goregaokar | -5/+2 |
| 2020-12-31 | Add fallible box APIs (`Box::try_new_*`) | Manish Goregaokar | -1/+73 |
| 2020-12-31 | Add fallible box allocator APIs (`Box::try_new_*_in()`) | Manish Goregaokar | -1/+85 |
| 2020-12-04 | Rename `AllocRef` to `Allocator` and `(de)alloc` to `(de)allocate` | Tim Diekmann | -66/+67 |
| 2020-11-28 | Require allocator to be static for boxed `Pin`-API | Tim Diekmann | -7/+25 |
| 2020-11-21 | Auto merge of #78461 - TimDiekmann:vec-alloc, r=Amanieu | bors | -2/+3 |
| 2020-11-21 | Rollup merge of #77844 - RalfJung:zst-box, r=nikomatsakis | Dylan DPC | -0/+11 |
| 2020-11-20 | reference NonNull::dangling | Ralf Jung | -4/+6 |
| 2020-11-18 | Add support for custom allocators in `Vec` | Tim Diekmann | -2/+3 |
| 2020-10-27 | fix Box::into_unique | Ralf Jung | -7/+2 |
| 2020-10-23 | Rename `Box::alloc` to `Box::alloc_ref` | Tim Diekmann | -2/+2 |
| 2020-10-16 | Merge branch 'master' into box-alloc | Tim Diekmann | -1/+1 |
| 2020-10-15 | Fix typo in documentation | strct | -1/+1 |
| 2020-10-13 | explicitly talk about integer literals | Ralf Jung | -3/+3 |
| 2020-10-12 | clarify rules for ZST Boxes | Ralf Jung | -0/+9 |
| 2020-10-07 | Support custom allocators in `Box` | Tim Diekmann | -110/+380 |
| 2020-09-01 | Use intra-doc links for `MaybeUninit` in `boxed.rs` | Joshua Nelson | -4/+4 |
| 2020-08-22 | Auto merge of #75171 - amosonn:new_zeroed_slice, r=Amanieu | bors | -0/+23 |
| 2020-08-21 | Use intra-doc-links in `alloc` | LeSeulArtichaut | -16/+10 |
| 2020-08-05 | Add {Box,Rc,Arc}::new_zeroed_slice | Amos Onn | -0/+23 |
| 2020-08-04 | Replace `Memoryblock` with `NonNull<[u8]>` | Tim Diekmann | -3/+1 |
| 2020-08-03 | Merge branch 'master' into remove-in-place-alloc | Tim Diekmann | -45/+1 |
| 2020-07-29 | Remove deprecated unstable `{Box,Rc,Arc}::into_raw_non_null` functions | Simon Sapin | -45/+1 |