| Age | Commit message (Expand) | Author | Lines |
| 2020-04-25 | Auto merge of #71556 - Dylan-DPC:rollup-9ll4shr, r=Dylan-DPC | bors | -5/+5 |
| 2020-04-25 | Rollup merge of #71168 - SimonSapin:into_raw_non_null, r=Amanieu | Dylan DPC | -5/+5 |
| 2020-04-25 | Bump bootstrap compiler | Mark Rousskov | -1/+0 |
| 2020-04-23 | Fix doc link errors | Tyler Ruckinger | -1/+1 |
| 2020-04-19 | weak-into-raw: Add {Arc,Rc}::as_ptr | Michal 'vorner' Vaner | -1/+25 |
| 2020-04-15 | Deprecate `Rc::into_raw_non_null` and `Arc::into_raw_non_null` | Simon Sapin | -0/+2 |
| 2020-04-15 | Deprecate `Box::into_raw_non_null` | Simon Sapin | -5/+3 |
| 2020-04-13 | weak-into-raw: as_raw -> as_ptr + dangling garbage | Michal 'vorner' Vaner | -26/+15 |
| 2020-04-08 | Replace "rc"/"arc" lang items with Rc/Arc diagnostic items. | Eduard-Mihai Burtescu | -1/+2 |
| 2020-04-05 | Stop importing integer modules in liballoc | Linus Färnstrand | -1/+0 |
| 2020-03-28 | Make fields in `MemoryBlock` public | Tim Diekmann | -1/+1 |
| 2020-03-26 | Remove alignment from `MemoryBlock` | Tim Diekmann | -10/+3 |
| 2020-03-26 | Fix issues from review and unsoundness of `RawVec::into_box` | Tim Diekmann | -5/+12 |
| 2020-03-26 | Overhaul of the `AllocRef` trait to match allocator-wg's latest consens | Tim Diekmann | -2/+4 |
| 2020-03-22 | Rollup merge of #68099 - lukaslueg:into_raw_unsafe, r=LukasKalbertodt | Dylan DPC | -5/+18 |
| 2020-03-03 | Rollup merge of #69609 - TimDiekmann:excess, r=Amanieu | Yuki Okushi | -1/+1 |
| 2020-03-03 | Remove `usable_size` APIs | Tim Diekmann | -1/+1 |
| 2020-02-28 | Stabilize `boxed_slice_try_from` | Yuki Okushi | -1/+1 |
| 2020-02-07 | Make rc::RcBox and sync::ArcInner repr(C) | Lukas Lueg | -0/+4 |
| 2020-01-28 | Refine [Arc/Rc]::from_raw() docs | Lukas Lueg | -5/+13 |
| 2020-01-27 | Rename `Alloc` to `AllocRef` | Tim Diekmann | -1/+1 |
| 2020-01-16 | Auto merge of #67339 - CAD97:rc-provenance, r=sfackler | bors | -2/+12 |
| 2020-01-10 | Ammend Rc/Arc::from_raw() docs regarding unsafety | Lukas Lueg | -3/+4 |
| 2019-12-22 | Format the world | Mark Rousskov | -84/+49 |
| 2019-12-22 | Rollup merge of #67504 - Mark-Simulacrum:note-data-offset, r=Centril | Mazdak Farrokhzad | -0/+2 |
| 2019-12-21 | Warn against relying on ?Sized being last | Mark Rousskov | -0/+2 |
| 2019-12-21 | Require issue = "none" over issue = "0" in unstable attributes | Ross MacArthur | -4/+4 |
| 2019-12-17 | Add internal safety docs to (A)Rc::into_raw | CAD97 | -0/+5 |
| 2019-12-16 | Rollup merge of #65778 - bdonlan:stable_weak_count, r=dtolnay | Mazdak Farrokhzad | -10/+6 |
| 2019-12-15 | Use pointer offset instead of deref for A/Rc::into_raw | cad97 | -2/+7 |
| 2019-12-14 | Bump Weak::strong_count/weak_count stabilizations from 1.40 to 1.41 | David Tolnay | -2/+2 |
| 2019-12-05 | Rollup merge of #66710 - vorner:weak-into-raw-null-docs, r=dtolnay | Mazdak Farrokhzad | -10/+14 |
| 2019-12-05 | weak-into-raw: Clarify some details in Safety | Michal 'vorner' Vaner | -10/+14 |
| 2019-12-03 | Auto merge of #66256 - CAD97:patch-2, r=RalfJung | bors | -1/+1 |
| 2019-11-26 | Rollup merge of #66128 - emilio:new-zeroed, r=SimonSapin | Tyler Mandry | -0/+29 |
| 2019-11-21 | Make Weak::weak_count() return zero when no strong refs remain | Bryan Donlan | -8/+4 |
| 2019-11-21 | Stabilize `std::{rc,sync}::Weak::{weak_count, strong_count}` | Bryan Donlan | -2/+2 |
| 2019-11-09 | Remove Layout::pad_to_align unwrap | Christopher Durham | -1/+1 |
| 2019-11-05 | Reverted PhantomData in LinkedList, fixed PhantomData markers in Rc and Arc | Oleg Nosov | -1/+1 |
| 2019-11-05 | alloc: Add new_zeroed() versions like new_uninit(). | Emilio Cobos Álvarez | -0/+29 |
| 2019-10-19 | some more Rc tweaks | Ralf Jung | -10/+12 |
| 2019-10-19 | the exampleis about drop, not (de)allocation | Ralf Jung | -2/+2 |
| 2019-10-17 | more consistency and clarification | Ralf Jung | -13/+17 |
| 2019-10-17 | Rc: value -> allocation | Ralf Jung | -44/+51 |
| 2019-10-13 | Fix typo in docs for `Rc` | kalabukdima | -2/+2 |
| 2019-10-01 | Remove unneeded `fn main` blocks from docs | Lzu Tao | -5/+3 |
| 2019-09-14 | Rollup merge of #61797 - Thomasdezeeuw:stablise-weak_ptr_eq, r=RalfJung | Mazdak Farrokhzad | -5/+4 |
| 2019-09-06 | A few cosmetic improvements to code & comments in liballoc and libcore | Alexander Regueiro | -1/+1 |
| 2019-08-25 | Update {rc, sync}::Weak::ptr_eq doc about comparing Weak::new | Thomas de Zeeuw | -2/+3 |
| 2019-08-25 | Stabilise weak_ptr_eq | Thomas de Zeeuw | -3/+1 |