| Age | Commit message (Expand) | Author | Lines |
| 2022-04-11 | impl const Default for Box<[T]> and Box<str> | Josh Stone | -4/+12 |
| 2022-04-08 | Add ThinBox type for 1 stack pointer sized heap allocated trait objects | Jane Lusby | -0/+5 |
| 2022-04-05 | trivial cfg(bootstrap) changes | Pietro Albini | -17/+9 |
| 2022-03-21 | Rename `~const Drop` to `~const Destruct` | Deadbeef | -10/+18 |
| 2022-03-10 | Rollup merge of #93950 - T-O-R-U-S:use-modern-formatting-for-format!-macros, ... | Dylan DPC | -6/+6 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -6/+6 |
| 2022-03-10 | Revert accidental stabilization | Oli Scherer | -2/+1 |
| 2022-02-03 | Move `{core,std}::stream::Stream` to `{core,std}::async_iter::AsyncIterator`. | Charles Lew | -3/+3 |
| 2022-01-04 | Add tracking issues (`const_box`, `const_alloc_error`) | woppopo | -22/+22 |
| 2021-12-23 | Constify `Box<T, A>` methods | woppopo | -24/+68 |
| 2021-12-04 | Rollup merge of #90851 - ibraheemdev:downcast-unchecked, r=scottmcm | Matthias Krüger | -28/+109 |
| 2021-12-03 | fix stability annotations for `Box::downcast` | Ibraheem Ahmed | -2/+2 |
| 2021-12-02 | Implement write() method for Box<MaybeUninit<T>> | Martin Habovstiak | -0/+36 |
| 2021-11-20 | fix doc links for `downcast_unchecked` | Ibraheem Ahmed | -0/+6 |
| 2021-11-12 | add tracking issue for `downcast_unchecked` | Ibraheem Ahmed | -3/+3 |
| 2021-11-12 | add unchecked downcast methods | Ibraheem Ahmed | -28/+103 |
| 2021-11-09 | document Box and box_free connection | asquared31415 | -0/+3 |
| 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 |