| Age | Commit message (Expand) | Author | Lines |
| 2021-06-29 | Add non-mutable methods to `Cursor` | Ian Wahbe | -0/+17 |
| 2021-06-29 | add head/tail methods to linked list mutable cursor | Ian Wahbe | -0/+154 |
| 2021-06-28 | Update to new bootstrap compiler | Mark Rousskov | -2/+1 |
| 2021-06-26 | Auto merge of #86586 - Smittyvb:https-everywhere, r=petrochenkov | bors | -2/+2 |
| 2021-06-25 | Fix a few misspellings. | Eric Huss | -2/+2 |
| 2021-06-24 | Use `hash_one` to simplify some other doctests | Scott McMurray | -8/+3 |
| 2021-06-23 | Use HTTPS links where possible | Smitty | -2/+2 |
| 2021-06-22 | Add comments around code where ordering is important due for panic-safety | The8472 | -0/+8 |
| 2021-06-21 | BTree: consistently avoid unwrap_unchecked in iterators | Stein Somers | -24/+10 |
| 2021-06-20 | Auto merge of #85980 - ssomers:btree_cleanup_LeafRange, r=Mark-Simulacrum | bors | -51/+111 |
| 2021-06-18 | Use `copy_nonoverlapping` to copy `bytes` in `String::insert_bytes` | Paolo Barbolini | -1/+1 |
| 2021-06-17 | Rollup merge of #85970 - jsha:remove-methods-implementors, r=GuillaumeGomez | Yuki Okushi | -0/+4 |
| 2021-06-17 | Rollup merge of #85663 - fee1-dead:document-arc-from, r=m-ou-se | Yuki Okushi | -0/+14 |
| 2021-06-16 | Add doc(hidden) to all __iterator_get_unchecked | Jacob Hoffman-Andrews | -0/+4 |
| 2021-06-17 | Rollup merge of #86140 - scottmcm:array-hash-facepalm, r=kennytm | Yuki Okushi | -0/+17 |
| 2021-06-14 | Stabilize `maybe_uninit_ref` | Yuki Okushi | -1/+0 |
| 2021-06-12 | Remove "generic type" in boxed.rs | Deadbeef | -1/+1 |
| 2021-06-09 | BTree: encapsulate LeafRange better & some debug asserts | Stein Somers | -51/+111 |
| 2021-06-09 | Rollup merge of #85715 - fee1-dead:document-string, r=JohnTitor | Yuki Okushi | -7/+43 |
| 2021-06-08 | Mention the Borrow guarantee on the Hash implementations for Array and Vec | Scott McMurray | -0/+17 |
| 2021-06-08 | Auto merge of #83515 - tamird:string-remove-matches-rev, r=m-ou-se | bors | -22/+39 |
| 2021-06-06 | String::remove_matches O(n^2) -> O(n) | Tamir Duberstein | -15/+38 |
| 2021-06-06 | Use iter::from_fn in String::remove_matches | Tamir Duberstein | -9/+3 |
| 2021-06-06 | Rollup merge of #85930 - mominul:array_into_iter, r=m-ou-se | Yuki Okushi | -7/+6 |
| 2021-06-05 | Document Arc::from | Deadbeef | -0/+14 |
| 2021-06-04 | rustdoc: link to stable/beta docs consistently in documentation | Joshua Nelson | -1/+0 |
| 2021-06-04 | added back bindings_after_at as a cfg_attr | marcusdunn | -0/+1 |
| 2021-06-04 | removed ref to bindings_after_at | marcusdunn | -1/+0 |
| 2021-06-04 | Rollup merge of #85717 - fee1-dead:document-cow, r=yaahc | Yuki Okushi | -0/+18 |
| 2021-06-03 | Auto merge of #85867 - steffahn:remove_unnecessary_specfromiter_impls, r=Mark... | bors | -34/+1 |
| 2021-06-02 | Stabilize VecDeque::partition_point. | Mara Bos | -2/+1 |
| 2021-06-02 | Bump vecdeque_binary_search stabilization to 1.54. | Mara Bos | -3/+3 |
| 2021-06-02 | Bumped `vecdeque_binary_search` stabilization version to 1.53.0 | SOFe | -3/+3 |
| 2021-06-02 | Stabilize `vecdeque_binary_search` | SOFe | -7/+3 |
| 2021-06-02 | Update expressions where we can use array's IntoIterator implementation | Muhammad Mominul Huque | -5/+5 |
| 2021-06-02 | Replace IntoIter::new with IntoIterator::into_iter in std | Muhammad Mominul Huque | -2/+1 |
| 2021-05-31 | Update documentation of SpecFromIter to reflect the removed impls | Frank Steffahn | -3/+1 |
| 2021-05-31 | Remove unnecessary SpecFromIter impls | Frank Steffahn | -31/+0 |
| 2021-05-31 | Auto merge of #85814 - steffahn:fix_linked_list_itermut_debug, r=m-ou-se | bors | -7/+20 |
| 2021-05-30 | Rollup merge of #85817 - r00ster91:patch-9, r=dtolnay | Guillaume Gomez | -1/+1 |
| 2021-05-30 | Rollup merge of #85801 - WaffleLapkin:master, r=joshtriplett | Guillaume Gomez | -0/+37 |
| 2021-05-30 | Improve Debug impls for LinkedList reference iterators to show items | Frank Steffahn | -2/+18 |
| 2021-05-30 | Fix a typo | r00ster | -1/+1 |
| 2021-05-29 | Fix unsoundness of Debug implementation for linked_list::IterMut | Frank Steffahn | -6/+3 |
| 2021-05-29 | Add `String::extend_from_within` | Waffle | -0/+37 |
| 2021-05-27 | Revert "Auto merge of #83770 - the8472:tra-extend, r=Mark-Simulacrum" | The8472 | -59/+25 |
| 2021-05-27 | Auto merge of #85737 - scottmcm:vec-calloc-option-nonzero, r=m-ou-se | bors | -0/+33 |
| 2021-05-26 | Enable Vec's calloc optimization for Option<NonZero> | Scott McMurray | -0/+33 |
| 2021-05-26 | Auto merge of #83770 - the8472:tra-extend, r=Mark-Simulacrum | bors | -25/+59 |
| 2021-05-26 | Document `From` impls for cow.rs | Deadbeef | -0/+18 |