| Age | Commit message (Expand) | Author | Lines |
| 2020-01-28 | Add BTreeMap::remove_entry | Billy Rieger | -1/+30 |
| 2020-01-27 | Rename `Alloc` to `AllocRef` | Tim Diekmann | -1/+1 |
| 2020-01-21 | Rollup merge of #67686 - ssomers:keys_start_slasher, r=Mark-Simulacrum | Mazdak Farrokhzad | -65/+24 |
| 2020-01-21 | Declare unsafe functions that can no longer handle shared roots | Stein Somers | -6/+6 |
| 2020-01-21 | trade in outdated comments for correct ones | Stein Somers | -2/+2 |
| 2020-01-19 | Format | Jonas Schievink | -2/+5 |
| 2020-01-19 | Move VecDeque Drain iterator to new file | Jonas Schievink | -121/+131 |
| 2020-01-19 | Avoid leak in DrainFilter when a drop panics | Jonas Schievink | -1/+15 |
| 2020-01-19 | Fix leak in VecDeque::drain when drop panics | Jonas Schievink | -34/+48 |
| 2020-01-19 | Fix leak in btree_map::IntoIter when drop panics | Jonas Schievink | -1/+16 |
| 2020-01-19 | Fix `VecDeque::truncate` leak on drop panic | Jonas Schievink | -1/+16 |
| 2020-01-19 | Fix `binary_heap::DrainSorted` drop leak on panics | Jonas Schievink | -2/+14 |
| 2020-01-14 | Update APIs according to RFC change suggestions. | Charles Lew | -18/+85 |
| 2020-01-12 | Address review comments. | Charles Lew | -2/+33 |
| 2020-01-12 | Address review comments. | Charles Lew | -83/+161 |
| 2020-01-12 | Implement Cursor for linked lists. (RFC 2570). | Charles Lew | -24/+531 |
| 2020-01-10 | Simplify NodeHeader by avoiding slices in BTreeMaps with shared roots | Stein Somers | -60/+19 |
| 2020-01-09 | Apply suggestions from code review | Stein Somers | -1/+2 |
| 2020-01-09 | Simplify into_key_slice_mut and document bits and bobs | Stein Somers | -13/+20 |
| 2020-01-04 | Tweak and extend internal documentation, including debug asserts. | Stein Somers | -15/+39 |
| 2019-12-28 | Auto merge of #67459 - ssomers:#67438, r=RalfJung | bors | -24/+30 |
| 2019-12-26 | prune ill-conceived BTreeMap iter_mut assertion and test more | Stein Somers | -24/+30 |
| 2019-12-26 | Remove redundant link texts | Matthew Kraai | -5/+5 |
| 2019-12-23 | Implement clone_from for BTree collections | Charles Gleason | -1/+66 |
| 2019-12-23 | Make RangeMut::next_unchecked() output a mutable key reference | Charles Gleason | -7/+15 |
| 2019-12-22 | Format the world | Mark Rousskov | -994/+657 |
| 2019-12-21 | Require issue = "none" over issue = "0" in unstable attributes | Ross MacArthur | -1/+1 |
| 2019-12-18 | Propagate cfg bootstrap | Mark Rousskov | -4/+1 |
| 2019-12-14 | Auto merge of #67136 - oli-obk:const_stability, r=Centril | bors | -0/+4 |
| 2019-12-13 | Rollup merge of #67235 - jonas-schievink:vecdeque-leak, r=KodrAus | Mazdak Farrokhzad | -1/+13 |
| 2019-12-13 | Require stable/unstable annotations for the constness of all stable functions... | Oliver Scherer | -0/+4 |
| 2019-12-13 | Rollup merge of #67243 - jonas-schievink:linkedlist-drop, r=KodrAus | Mazdak Farrokhzad | -1/+15 |
| 2019-12-13 | Rollup merge of #66341 - crgl:vec-deque-extend, r=Amanieu | Mazdak Farrokhzad | -1/+16 |
| 2019-12-12 | Add comment to `Dropper` | Jonas Schievink | -0/+2 |
| 2019-12-12 | LinkedList: drop remaining items when drop panics | Jonas Schievink | -1/+15 |
| 2019-12-11 | VecDeque: drop remaining items on destructor panic | Jonas Schievink | -1/+11 |
| 2019-12-07 | liballoc: ignore tests in Miri instead of removing them entirely | Ralf Jung | -5/+5 |
| 2019-11-29 | Format liballoc with rustfmt | David Tolnay | -39/+34 |
| 2019-11-26 | Fix spelling typos | Brian Wignall | -1/+1 |
| 2019-11-13 | Match VecDeque::extend to Vec::extend | Charles Gleason | -1/+16 |
| 2019-11-13 | Auto merge of #65637 - ssomers:master, r=scottmcm | bors | -11/+214 |
| 2019-11-11 | Auto merge of #65933 - crgl:vec-deque-truncate, r=alexcrichton | bors | -4/+63 |
| 2019-11-07 | Rollup merge of #66117 - olegnn:fixed_linked_list_marker, r=RalfJung | Yuki Okushi | -1/+1 |
| 2019-11-05 | Reverted PhantomData in LinkedList, fixed PhantomData markers in Rc and Arc | Oleg Nosov | -2/+2 |
| 2019-11-05 | LinkedList: PhantomData<Box<Node<T>>> => PhantomData<T> | Oleg Nosov | -3/+3 |
| 2019-11-05 | Rollup merge of #65574 - tshepang:linked-list-disclaimer, r=Centril | Pietro Albini | -7/+7 |
| 2019-10-31 | docs: improve disclaimer regarding LinkedList | Tshepang Lekhonkhobe | -7/+7 |
| 2019-10-29 | Use truncate(0) in VecDeque clear | Charles Gleason | -1/+1 |
| 2019-10-29 | Add test for VecDeque truncate | Charles Gleason | -0/+35 |
| 2019-10-29 | Use ptr::drop_in_place in VecDeque truncate | Charles Gleason | -2/+25 |