| Age | Commit message (Expand) | Author | Lines |
| 2018-11-15 | Rollup merge of #55785 - stjepang:unsized-drop-forget, r=alexcrichton | Pietro Albini | -0/+13 |
| 2018-11-13 | Auto merge of #55052 - newpavlov:patch-2, r=alexcrichton | bors | -1/+1 |
| 2018-11-12 | Auto merge of #55278 - Centril:constification-1, r=alexcrichton | bors | -2/+1 |
| 2018-11-12 | Update docs | Stjepan Glavina | -16/+3 |
| 2018-11-12 | Add forget_unsized only | Stjepan Glavina | -107/+15 |
| 2018-11-10 | Fix documentation typos. | Bruce Mitchener | -4/+4 |
| 2018-11-10 | revert some more constification. | Mazdak Farrokhzad | -1/+1 |
| 2018-11-10 | constify parts of libcore. | Mazdak Farrokhzad | -3/+2 |
| 2018-11-08 | Allow unsized types in mem::drop and mem::forget | Stjepan Glavina | -1/+119 |
| 2018-10-31 | Bump nightly to 1.32.0 | Alex Crichton | -11/+2 |
| 2018-10-28 | Rollup merge of #55421 - CAD97:patch-1, r=kennytm | kennytm | -0/+20 |
| 2018-10-28 | Add ManuallyDrop::take | Christopher Durham | -0/+20 |
| 2018-10-21 | Add MaybeUninit::new | Simon Sapin | -0/+9 |
| 2018-10-13 | Use read_unaligned instead of read in transmute_copy | Artyom Pavlov | -1/+1 |
| 2018-10-03 | Only promote calls to `#[rustc_promotable]` const fns | Oliver Schneider | -0/+2 |
| 2018-09-30 | Auto merge of #54596 - mjbshaw:drop, r=RalfJung | bors | -0/+10 |
| 2018-09-27 | Bump to 1.31.0 and bootstrap from 1.30 beta | Josh Stone | -28/+0 |
| 2018-09-26 | Gate const core::mem::needs_drop behind const_needs_drop | Michael Bradshaw | -0/+1 |
| 2018-09-26 | Make core::mem::needs_drop a const fn | Michael Bradshaw | -0/+9 |
| 2018-09-22 | don't deprecate mem::{uninitialized,zeroed} just yet | Jorge Aparicio | -2/+3 |
| 2018-09-22 | add MaybeUninit and deprecate mem::{uninitialized,zeroed} | Jorge Aparicio | -0/+95 |
| 2018-09-04 | Clarify `ManuallyDrop` docs | Tobias Bucher | -2/+8 |
| 2018-08-31 | Implement the `min_const_fn` feature gate | Oliver Schneider | -0/+28 |
| 2018-08-27 | Auto merge of #53227 - nivkner:pin_move, r=RalfJung | bors | -147/+2 |
| 2018-08-23 | Discourage overuse of mem::forget | Kornel | -39/+7 |
| 2018-08-23 | move PinMut into pin module and export through std | Niv Kaminer | -147/+2 |
| 2018-08-09 | repr(transparent) | Ralf Jung | -0/+1 |
| 2018-08-06 | remove unnecessary CoerceUnsized impl | Ralf Jung | -3/+0 |
| 2018-08-03 | unsized ManuallyDrop | Ralf Jung | -3/+8 |
| 2018-08-01 | Switch to bootstrapping from 1.29 beta | Mark Rousskov | -7/+0 |
| 2018-07-25 | Change ManuallyDrop from an union to a struct and make it a lang item. | Eduard-Mihai Burtescu | -92/+16 |
| 2018-07-21 | Don't use SIMD in mem::swap for types smaller than the block size | Scott McMurray | -1/+1 |
| 2018-07-05 | Clarifying how the alignment of the struct works | Val Markovic | -1/+4 |
| 2018-07-02 | Implement `UnsafeFutureObj` for `&mut Future` | Josef Reinhard Brandl | -1/+3 |
| 2018-07-02 | Make `drop` method for `PinMut`'s `UnsafeFutureObj` impl empty | Josef Reinhard Brandl | -3/+1 |
| 2018-07-02 | `UnsafeFutureObj` impl for `PinMut` | Josef Reinhard Brandl | -0/+17 |
| 2018-06-23 | `PinMut`: Add safe `get_mut` and rename unsafe fns to `get_mut_unchecked` and... | Josef Reinhard Brandl | -4/+10 |
| 2018-06-08 | Document size_of for 128-bit integers | bstrie | -0/+2 |
| 2018-06-02 | Rollup merge of #51124 - frewsxcv:frewsxcv-replace, r=QuietMisdreavus | Mark Simulacrum | -2/+3 |
| 2018-06-01 | Reword {ptr,mem}::replace docs. | Corey Farwell | -2/+3 |
| 2018-05-30 | Add doc link from discriminant struct to function. | Corey Farwell | -1/+3 |
| 2018-05-22 | Add PinMut::set | Taylor Cramer | -0/+8 |
| 2018-05-22 | Make `Unpin` safe to implement | Taylor Cramer | -1/+1 |
| 2018-05-09 | Rollup merge of #50148 - japaric:const-manuallydrop, r=oli-obk | kennytm | -1/+2 |
| 2018-05-07 | Rename PinMut::borrow to PinMut::reborrow and make it a method | Ralf Jung | -3/+6 |
| 2018-05-07 | PinMut::get_mut can also preserve the lifetime | Ralf Jung | -1/+1 |
| 2018-05-07 | Change PinMut::map to be able to preserve the original reference's lifetime | Ralf Jung | -1/+1 |
| 2018-05-07 | Rename Pin to PinMut | Ralf Jung | -24/+24 |
| 2018-05-07 | make the const constructor unstable | Jorge Aparicio | -0/+1 |
| 2018-04-21 | turn `ManuallyDrop::new` into a constant function | Jorge Aparicio | -1/+1 |