| Age | Commit message (Expand) | Author | Lines |
| 2019-07-04 | Rollup merge of #62316 - khuey:efficient_last, r=sfackler | Mazdak Farrokhzad | -0/+8 |
| 2019-07-02 | When possible without changing semantics, implement Iterator::last in terms o... | Kyle Huey | -0/+8 |
| 2019-06-30 | Improve box clone doctests to ensure the documentation is valid | Chris Gregory | -1/+13 |
| 2019-06-22 | Remove FnBox. | Mazdak Farrokhzad | -79/+0 |
| 2019-05-27 | Update src/liballoc/boxed.rs | Aleksey Kladov | -0/+1 |
| 2019-05-27 | make Box<str>::clone simpler & safer | Aleksey Kladov | -4/+2 |
| 2019-05-27 | avoid materializing unintialized Boxes in RawVec | Aleksey Kladov | -3/+6 |
| 2019-05-24 | Deprecate `FnBox`. `Box<dyn FnOnce()>` can be called directly, since 1.35 | Simon Sapin | -9/+33 |
| 2019-05-23 | adjust comment | Ralf Jung | -1/+2 |
| 2019-05-23 | Box::into_unique: do the reborrow-to-raw *after* destroying the Box | Ralf Jung | -4/+4 |
| 2019-05-20 | Create and reference Memory Layout section of boxed docs | Brent Kerby | -31/+39 |
| 2019-05-20 | Remove trailing whitespaces to satisfy tidy | Brent Kerby | -5/+5 |
| 2019-05-20 | Update boxed::Box docs on memory layout | Brent Kerby | -14/+45 |
| 2019-04-23 | Stabilize futures_api | Taylor Cramer | -1/+1 |
| 2019-04-15 | warn(missing_docs) in liballoc, and add missing docs | Ralf Jung | -0/+1 |
| 2019-04-11 | Fix broken links on std::boxed doc page | Oliver Middleton | -0/+2 |
| 2019-04-07 | Auto merge of #59119 - cramertj:cx-back, r=withoutboats | bors | -3/+3 |
| 2019-04-05 | Future-proof the Futures API | Taylor Cramer | -3/+3 |
| 2019-04-05 | Stabilize boxed_closure_impls in 1.35.0. | Charles Lew | -9/+3 |
| 2019-04-05 | Remove FnBox specialization of impl FnOnce for Box<impl FnOnce>. | Masaki Hara | -17/+1 |
| 2019-04-05 | We already have unsized_locals in stage0. | Masaki Hara | -9/+0 |
| 2019-04-05 | Add Fn* blanket impls for Box. | Masaki Hara | -0/+33 |
| 2019-04-05 | Make FnBox a subtrait of FnOnce. | Masaki Hara | -5/+1 |
| 2019-03-24 | Rollup merge of #59328 - koalatux:iter-nth-back, r=scottmcm | kennytm | -0/+3 |
| 2019-03-09 | Use lifetime contravariance to elide more lifetimes in core+alloc+std | Scott McMurray | -4/+4 |
| 2019-02-25 | Rollup merge of #58686 - hellow554:rustfmt_depr, r=cramertj | Mazdak Farrokhzad | -1/+1 |
| 2019-02-24 | Rollup merge of #58183 - jethrogb:jb/alloc-box-guarantees, r=SimonSapin | Mazdak Farrokhzad | -0/+10 |
| 2019-02-23 | replace deprecated rustfmt_skip with rustfmt::skip | Marcel Hellwig | -1/+1 |
| 2019-02-16 | implement nth_back for Box | Adrian Friedli | -0/+3 |
| 2019-02-16 | Rollup merge of #58429 - RalfJung:box, r=TimNN | kennytm | -3/+8 |
| 2019-02-13 | fix Box::into_unique effecitvely transmuting to a raw ptr | Ralf Jung | -3/+8 |
| 2019-02-13 | Clarify guarantees for `Box` allocation | Jethro Beekman | -0/+10 |
| 2019-02-03 | Update the future/task API | Matthias Einwag | -3/+3 |
| 2019-02-03 | liballoc: revert nested imports style changes. | Mazdak Farrokhzad | -20/+18 |
| 2019-02-02 | liballoc: fix some idiom lints. | Mazdak Farrokhzad | -3/+3 |
| 2019-02-02 | liballoc: elide some lifetimes. | Mazdak Farrokhzad | -2/+2 |
| 2019-02-02 | liballoc: refactor & fix some imports. | Mazdak Farrokhzad | -18/+20 |
| 2019-02-02 | liballoc: cargo check passes on 2018 | Mazdak Farrokhzad | -3/+3 |
| 2019-01-27 | impl Generator for Pin<Box<Generator>> | Wim Looman | -0/+10 |
| 2019-01-27 | Change generator trait to use pinning | Wim Looman | -7/+6 |
| 2019-01-03 | Add discoverable function for converting Box<T> -> Pin<Box<T>> | Wim Looman | -4/+14 |
| 2019-01-03 | Allow converting Box<T: !Sized> -> Pin<Box<T>> | Wim Looman | -1/+1 |
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 |
| 2018-12-24 | Rollup merge of #55470 - daniellimws:box-from-docs, r=Centril | Mazdak Farrokhzad | -0/+54 |
| 2018-12-21 | Rename Box/Arc/Rc::pinned to ::pin | Taylor Cramer | -1/+3 |
| 2018-12-21 | Stabilize Pin | Taylor Cramer | -3/+3 |
| 2018-12-20 | Stabilize `Rc`, `Arc` and `Pin` as method receivers | Michael Hewson | -1/+6 |
| 2018-12-07 | Various minor/cosmetic improvements to code | Alexander Regueiro | -1/+1 |
| 2018-12-05 | Fix error in example by adding type annotation | daniellimws | -1/+1 |
| 2018-11-20 | Incorporate `dyn` into more comments and docs. | Corey Farwell | -8/+8 |