| Age | Commit message (Expand) | Author | Lines |
| 2025-09-25 | Remove most `#[track_caller]` from allocating Vec methods | Noratrieb | -34/+0 |
| 2025-09-20 | docs: improve doc of some methods w/ ranges | tk | -6/+6 |
| 2025-07-30 | Implement push_mut | Balt | -11/+85 |
| 2025-07-22 | Rename `tests/codegen` into `tests/codegen-llvm` | Guillaume Gomez | -1/+1 |
| 2025-06-18 | vec_deque tests: remove static mut | Marijn Schouten | -26/+12 |
| 2025-05-21 | std: fix doctest and explain for as_slices and as_mut_slices in VecDeque | xizheyin | -5/+28 |
| 2025-05-05 | Implement `VecDeque::truncate_front()` | Vladimir Krivopalov | -0/+67 |
| 2025-03-07 | Fully test the alloc crate through alloctests | bjorn3 | -0/+4 |
| 2025-02-08 | Rustfmt | bjorn3 | -3/+4 |
| 2025-01-25 | [Clippy] Add vec_reserve & vecdeque_reserve diagnostic items | wowinter13 | -0/+1 |
| 2025-01-22 | Implement `VecDeque::pop_front_if` & `VecDeque::pop_back_if` | Pavel Grigorenko | -0/+46 |
| 2024-12-14 | Add clarity to the "greater" of `VecDeque::insert` | tkirishima | -1/+1 |
| 2024-12-14 | Replace i32 by char to add clarity | tkirishima | -9/+12 |
| 2024-11-19 | Rollup merge of #123947 - zopsicle:vec_deque-Iter-as_slices, r=Amanieu | Matthias Krüger | -0/+141 |
| 2024-10-16 | Fix predicate signatures in retain_mut docs | Collin O'Connor | -1/+1 |
| 2024-10-14 | Auto merge of #126557 - GrigorenkoPV:vec_track_caller, r=joboet | bors | -0/+31 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -5/+4 |
| 2024-09-20 | Auto merge of #124895 - obeis:static-mut-hidden-ref, r=compiler-errors | bors | -0/+3 |
| 2024-09-20 | Add `#[track_caller]` to allocating methods of `Vec` & `VecDeque` | Pavel Grigorenko | -0/+31 |
| 2024-09-18 | [Clippy] Swap `manual_retain` to use diagnostic items instead of paths | GnomedDev | -0/+1 |
| 2024-09-13 | Update tests for hidden references to mutable static | Obei Sideg | -0/+3 |
| 2024-09-12 | Rollup merge of #130101 - RalfJung:const-cleanup, r=fee1-dead | Matthias Krüger | -2/+2 |
| 2024-09-08 | add FIXME(const-hack) | Ralf Jung | -2/+2 |
| 2024-09-08 | Remove needless returns detected by clippy in libraries | Eduardo Sánchez Muñoz | -4/+4 |
| 2024-09-05 | update cfgs | Boxy | -4/+0 |
| 2024-09-03 | replace placeholder version | Boxy | -2/+2 |
| 2024-08-10 | Stabilize `min_exhaustive_patterns` | Nadrieril | -0/+2 |
| 2024-08-07 | Rollup merge of #128261 - clarfonthey:iter-default, r=dtolnay | Matthias Krüger | -0/+28 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -15/+11 |
| 2024-07-27 | Okay, I guess I have to give these a different feature name | ltdk | -2/+2 |
| 2024-07-27 | impl Default for collection iterators that don't already have it | ltdk | -0/+28 |
| 2024-07-07 | Specialize `TrustedLen` for `Iterator::unzip()` | Chayim Refael Friedman | -11/+32 |
| 2024-06-24 | Replace `MaybeUninit::uninit_array()` with array repeat expression. | Kevin Reid | -1/+1 |
| 2024-05-07 | Move `test_shrink_to_unwind` to its own file. | Markus Everling | -54/+1 |
| 2024-05-07 | Fix `VecDeque::shrink_to` UB when `handle_alloc_error` unwinds. | Markus Everling | -2/+119 |
| 2024-04-17 | Rollup merge of #122201 - coolreader18:doc-clone_from, r=dtolnay | Matthias Krüger | -2/+6 |
| 2024-04-17 | Address comments | Noa | -3/+1 |
| 2024-04-15 | Add vec_deque::Iter::as_slices and friends | chloekek | -0/+141 |
| 2024-04-08 | Add invariant to VecDeque::pop_* that len < cap if pop successful | Philippe-Cholet | -2/+8 |
| 2024-04-02 | Auto merge of #122945 - andy-k:sorted-vec-example, r=jhpratt | bors | -2/+4 |
| 2024-03-28 | Rename reserve_for_push to grow_one and fix comment. | Cai Bear | -1/+1 |
| 2024-03-28 | Fix previous. | Cai Bear | -1/+2 |
| 2024-03-28 | Remove len argument from RawVec::reserve_for_push because it's always equal t... | Cai Bear | -3/+2 |
| 2024-03-24 | clarify equivalency of binary_search and partition_point | Andy Kurnia | -1/+3 |
| 2024-03-23 | improve example on inserting to a sorted vector to avoid shifting equal elements | Andy Kurnia | -1/+1 |
| 2024-03-08 | Document overrides of `clone_from()` | Noa | -2/+8 |
| 2024-03-01 | try_with_capacity for Vec, VecDeque, String | Kornel | -0/+24 |
| 2024-02-22 | Add `rustc_confusables` annotations to some stdlib APIs | Esteban Küber | -0/+5 |
| 2024-02-18 | Auto merge of #118264 - lukas-code:optimized-draining, r=the8472 | bors | -56/+114 |
| 2024-02-17 | Rollup merge of #121149 - SebastianJL:patch-1, r=Mark-Simulacrum | Matthias Krüger | -4/+4 |