| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2022-12-29 | Implement more methods for `vec_deque::IntoIter` | Markus Everling | -1/+184 |
| 2022-12-28 | fix documenting private items of standard library | Lukas Markeffsky | -11/+17 |
| 2022-12-28 | Rollup merge of #94145 - ssomers:binary_heap_tests, r=jyn514 | fee1-dead | -291/+107 |
| 2022-12-20 | Auto merge of #105127 - Sp00ph:const_new, r=dtolnay | bors | -3/+4 |
| 2022-12-15 | doc: Fix a few small issues | Hannes Körber | -1/+1 |
| 2022-12-08 | Apply review feedback; Fix no_global_oom_handling build | Scott McMurray | -0/+3 |
| 2022-12-08 | Make `VecDeque::from_iter` O(1) from `vec(_deque)::IntoIter` | Scott McMurray | -11/+71 |
| 2022-12-05 | Add O(1) `Vec -> VecDeque` conversion guarantee | Markus Everling | -3/+3 |
| 2022-12-05 | Auto merge of #105046 - scottmcm:vecdeque-vs-vec, r=Mark-Simulacrum | bors | -5/+12 |
| 2022-12-01 | Fix typo in comment | Markus Everling | -1/+1 |
| 2022-12-01 | Make `VecDeque::new` const | Markus Everling | -3/+4 |
| 2022-12-01 | Make `VecDeque::new_in` unstably const | Markus Everling | -2/+1 |
| 2022-11-29 | Send `VecDeque::from_iter` via `Vec::from_iter` | Scott McMurray | -5/+12 |
| 2022-11-28 | Auto merge of #102991 - Sp00ph:master, r=scottmcm | bors | -1277/+925 |
| 2022-11-26 | Add second test case in `make_contiguous_head_to_end` | Markus Everling | -10/+49 |
| 2022-11-26 | Improve slow path in `make_contiguous` | Markus Everling | -36/+76 |
| 2022-11-26 | Don't use `Take` in `SpecExtend` impl | Markus Everling | -21/+23 |
| 2022-11-25 | Changes according to code review | Markus Everling | -144/+181 |
| 2022-11-20 | replace unusual grammar | Tshepang Mbambo | -2/+2 |
| 2022-11-20 | Update VecDeque implementation | Markus Everling | -1230/+760 |
| 2022-11-15 | `VecDeque::resize` should re-use the buffer in the passed-in element | Scott McMurray | -2/+7 |
| 2022-11-14 | Auto merge of #103858 - Mark-Simulacrum:bump-bootstrap, r=pietroalbini | bors | -12/+12 |
| 2022-11-08 | Rollup merge of #104097 - RalfJung:miri-alloc-benches, r=thomcc | Guillaume Gomez | -15/+19 |
| 2022-11-08 | Rollup merge of #104093 - RalfJung:test-sizes, r=thomcc | Guillaume Gomez | -0/+1 |
| 2022-11-07 | fmt | Ralf Jung | -5/+5 |