| Age | Commit message (Expand) | Author | Lines |
| 2023-04-28 | Make sure that signatures aren't accidental refinements | Michael Goulet | -17/+65 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -16/+16 |
| 2023-04-26 | Rollup merge of #110419 - jsoref:spelling-library, r=jyn514 | Matthias Krüger | -1/+1 |
| 2023-04-26 | Spelling library/ | Josh Soref | -1/+1 |
| 2023-04-25 | Auto merge of #103093 - rytheo:linked-list-alloc-api, r=Mark-Simulacrum | bors | -135/+224 |
| 2023-04-24 | Add support for allocators in LinkedList | Ryan Lowe | -135/+224 |
| 2023-04-14 | Rollup merge of #110244 - kadiwa4:unnecessary_imports, r=JohnTitor | Matthias Krüger | -16/+7 |
| 2023-04-12 | remove some unneeded imports | KaDiWa | -16/+7 |
| 2023-04-12 | Fix btree `CursorMut::insert_after` check | marc0246 | -1/+65 |
| 2023-04-03 | Auto merge of #108448 - ishitatsuyuki:binary-heap, r=Mark-Simulacrum | bors | -51/+19 |
| 2023-04-02 | Auto merge of #109701 - Amanieu:binaryheap_retain, r=ChrisDenton | bors | -2/+1 |
| 2023-03-30 | Rollup merge of #106985 - jofas:106746-fix, r=ChrisDenton | Yuki Okushi | -10/+10 |
| 2023-03-30 | removed deprecated markdown links from documentation | jofas | -3/+0 |
| 2023-03-29 | enhanced documentation of binary search methods for slice and VecDeque for un... | jofas | -7/+10 |
| 2023-03-28 | Stabilize `binary_heap_retain` | Amanieu d'Antras | -2/+1 |
| 2023-03-27 | fix advance_by impl for vec_deque and add tests | The 8472 | -7/+7 |
| 2023-03-27 | replace advance_by returning usize with Result<(), NonZeroUsize> | The 8472 | -29/+39 |
| 2023-03-27 | Change advance(_back)_by to return `usize` instead of `Result<(), usize>` | The 8472 | -32/+30 |
| 2023-03-25 | Auto merge of #99929 - the8472:default-iters, r=scottmcm | bors | -0/+228 |
| 2023-03-20 | Remove outdated comments | Maybe Waffle | -6/+0 |
| 2023-03-11 | Rollup merge of #106276 - Sp00ph:unify_slice_ranges, r=the8472 | Matthias Krüger | -36/+31 |
| 2023-03-01 | Rollup merge of #108462 - pommicket:fix-vecdeque-zst-overflow, r=Amanieu | Dylan DPC | -1/+1 |
| 2023-02-28 | Support allocators in various Default for IntoIter impls | The 8472 | -5/+17 |
| 2023-02-28 | rewrite iterator `Default` tests as doctests | The 8472 | -22/+98 |
| 2023-02-28 | Implement Default for some alloc/core iterators | The 8472 | -0/+140 |
| 2023-02-26 | Disambiguate comments | Markus Everling | -2/+2 |
| 2023-02-26 | Fix `VecDeque::shrink_to` and add tests. | Markus Everling | -55/+104 |
| 2023-02-25 | Use checked_add in VecDeque::append for ZSTs to avoid overflow | pommicket | -1/+1 |
| 2023-02-25 | binary_heap: Unify Extend implementation. | Tatsuyuki Ishi | -34/+2 |
| 2023-02-25 | binary_heap: Make RebuildOnDrop a common helper. | Tatsuyuki Ishi | -17/+17 |
| 2023-02-24 | Rollup merge of #106918 - dtolnay:heapretain, r=the8472 | Dylan DPC | -6/+37 |
| 2023-02-20 | Changes according to review | Markus Everling | -11/+11 |
| 2023-02-18 | Auto merge of #106241 - Sp00ph:vec_deque_iter_methods, r=the8472 | bors | -1/+184 |
| 2023-02-08 | Rollup merge of #105641 - Amanieu:btree_cursor, r=m-ou-se | Matthias Krüger | -41/+957 |
| 2023-02-05 | Add `slice_ranges` safety comment | Markus Everling | -5/+12 |
| 2023-02-01 | BTreeMap: Add Cursor and CursorMut | Amanieu d'Antras | -5/+839 |
| 2023-02-01 | BTreeMap: Change internal insert function to return a handle | Amanieu d'Antras | -37/+119 |
| 2023-01-31 | Fix `vec_deque::Drain` FIXME | Markus Everling | -31/+19 |
| 2023-01-25 | Set version placeholders to 1.68 | Mark Rousskov | -1/+1 |
| 2023-01-15 | Rebuild BinaryHeap on unwind from retain | David Tolnay | -7/+21 |
| 2023-01-15 | Add test showing broken behavior of BinaryHeap::retain | David Tolnay | -0/+17 |
| 2023-01-14 | Document guarantees about BinaryHeap invariant | David Tolnay | -1/+9 |
| 2023-01-14 | Leak amplification for peek_mut() to ensure BinaryHeap's invariant is always met | David Tolnay | -9/+46 |
| 2023-01-14 | Add test of leaking a binary_heap PeekMut | David Tolnay | -0/+19 |
| 2023-01-10 | mv binary_heap.rs binary_heap/mod.rs | Alan Egerton | -0/+0 |
| 2023-01-08 | Rollup merge of #106562 - clubby789:vec-deque-example, r=Mark-Simulacrum | Yuki Okushi | -1/+3 |
| 2023-01-08 | Auto merge of #104658 - thomcc:rand-update-and-usable-no_std, r=Mark-Simulacrum | bors | -8/+9 |
| 2023-01-07 | Rollup merge of #105128 - Sp00ph:vec_vec_deque_conversion, r=dtolnay | Matthias Krüger | -3/+3 |
| 2023-01-07 | Clarify examples for `VecDeque::get/get_mut` | clubby789 | -1/+3 |
| 2023-01-04 | Update rand in the stdlib tests, and remove the getrandom feature from it | Thom Chiovoloni | -8/+9 |