| Age | Commit message (Expand) | Author | Lines |
| 2021-03-22 | Expose str::SplitInclusive | Mark Rousskov | -1/+1 |
| 2021-02-06 | Rollup merge of #81580 - rodrimati1992:patch-2, r=dtolnay | Mara Bos | -4/+35 |
| 2021-02-06 | Rollup merge of #80011 - Stupremee:stabilize-peekable-next-if, r=dtolnay | Mara Bos | -5/+2 |
| 2021-02-05 | Bump peekable_next_if to rust 1.51.0 | David Tolnay | -2/+2 |
| 2021-02-05 | Rollup merge of #81767 - exrook:layout-error-stability, r=Mark-Simulacrum | Mara Bos | -4/+4 |
| 2021-02-05 | Rollup merge of #81730 - RustyYato:object-safe-allocator, r=Amanieu | Mara Bos | -1/+4 |
| 2021-02-04 | Update LayoutError/LayoutErr stability attributes | Jacob Hughes | -4/+4 |
| 2021-02-04 | Rollup merge of #81727 - m-ou-se:unstabilize-bits, r=Mark-Simulacrum | Mara Bos | -2/+4 |
| 2021-02-04 | Rollup merge of #81645 - m-ou-se:panic-lint, r=estebank,flip1995 | Mara Bos | -7/+8 |
| 2021-02-04 | Stabilize feature(iterator_fold_self): Iterator::reduce | Mara Bos | -3/+1 |
| 2021-02-04 | Improve documentation of Iterator::{fold, reduce}. | Mara Bos | -5/+16 |
| 2021-02-04 | Rename Iterator::fold_first to reduce. | Mara Bos | -4/+4 |
| 2021-02-03 | make Allocator object-safe | RustyYato | -1/+4 |
| 2021-02-03 | Update panic!() documentation about non-string panics. | Mara Bos | -7/+8 |
| 2021-02-03 | Revert stabilizing integer::BITS. | Mara Bos | -2/+4 |
| 2021-02-03 | Rollup merge of #81573 - ehuss:cell-links, r=jackh726 | Guillaume Gomez | -20/+24 |
| 2021-02-03 | Rollup merge of #81144 - nhwn:typo-map-while, r=jackh726 | Guillaume Gomez | -1/+1 |
| 2021-02-02 | Rollup merge of #81647 - m-ou-se:assert-2021-fix, r=petrochenkov | Jack Huey | -1/+1 |
| 2021-02-02 | Rollup merge of #81588 - xfix:delete-doc-alias, r=Mark-Simulacrum | Jack Huey | -0/+1 |
| 2021-02-02 | Auto merge of #80843 - Mark-Simulacrum:fmt-bump, r=petrochenkov | bors | -2/+4 |
| 2021-02-02 | Bump rustfmt version | Mark Rousskov | -2/+4 |
| 2021-02-02 | Rollup merge of #81599 - sdroege:fuse-trusted-len, r=m-ou-se | Jonas Schievink | -1/+14 |
| 2021-02-01 | Fix bug with assert!() calling the wrong edition of panic!(). | Mara Bos | -1/+1 |
| 2021-02-01 | Auto merge of #80851 - m-ou-se:panic-2021, r=petrochenkov | bors | -1/+51 |
| 2021-02-01 | Implement `TrustedLen` for `iter::Fuse<I: TrustedLen>` | Sebastian Dröge | -1/+9 |
| 2021-02-01 | Add SAFETY comment for the `TrustedRandomAccess` impl of `iter::Fuse` | Sebastian Dröge | -0/+5 |
| 2021-01-31 | Update comment about leaking | rodrimati1992 | -1/+1 |
| 2021-01-31 | stabilize int_bits_const | Ashley Mannix | -4/+2 |
| 2021-01-31 | Add doc aliases for "delete" | Konrad Borowski | -0/+1 |
| 2021-01-31 | Update maybe_uninit.rs | rodrimati1992 | -1/+1 |
| 2021-01-31 | Removed trailing whitespace | rodrimati1992 | -7/+7 |
| 2021-01-31 | Document how `MaybeUninit<Struct>` can be initialized. | rodrimati1992 | -4/+35 |
| 2021-01-31 | Rollup merge of #81562 - the8472:improve-inplaceiterable-docs, r=sfackler | Jonas Schievink | -3/+5 |
| 2021-01-31 | Rollup merge of #81484 - Kogia-sima:perf/optimize-udiv_1e19, r=nagisa | Jonas Schievink | -19/+36 |
| 2021-01-31 | Rollup merge of #81198 - dtolnay:partialeq, r=m-ou-se | Jonas Schievink | -6/+10 |
| 2021-01-31 | Rollup merge of #81048 - yoshuawuyts:stabilize-core-slice-fill-with, r=m-ou-se | Jonas Schievink | -3/+2 |
| 2021-01-31 | Rollup merge of #80470 - SimonSapin:array-intoiter-type, r=m-ou-se | Jonas Schievink | -8/+19 |
| 2021-01-31 | Rollup merge of #80279 - Yaulendil:str-as-mut, r=m-ou-se | Jonas Schievink | -0/+8 |
| 2021-01-30 | Add some links to the cell docs. | Eric Huss | -20/+24 |
| 2021-01-30 | Bump as_mut_str_for_str stable version. | Mara Bos | -1/+1 |
| 2021-01-30 | Clarify that guarantees extend to other advancing iterator methods. | The8472 | -3/+5 |
| 2021-01-30 | Rollup merge of #81409 - gilescope:chars_count, r=joshtriplett | Yuki Okushi | -6/+1 |
| 2021-01-30 | Rollup merge of #80959 - jhpratt:unsigned_abs-stabilization, r=m-ou-se | Yuki Okushi | -3/+3 |
| 2021-01-30 | Rollup merge of #80886 - RalfJung:stable-raw-ref-macros, r=m-ou-se | Yuki Okushi | -13/+10 |
| 2021-01-30 | Rollup merge of #79023 - yoshuawuyts:stream, r=KodrAus | Yuki Okushi | -0/+239 |
| 2021-01-29 | rename raw_const/mut -> const/mut_addr_of, and stabilize them | Ralf Jung | -13/+10 |
| 2021-01-29 | Rollup merge of #81306 - SkiFire13:fuse-flatten, r=cuviper | Yuki Okushi | -2/+14 |
| 2021-01-29 | Optimize udiv_1e19() function | Kogia-sima | -19/+36 |
| 2021-01-28 | Rollup merge of #81277 - flip1995:from_diag_items, r=matthewjasper | Yuki Okushi | -0/+3 |
| 2021-01-26 | Same instructions, but simpler. | Giles Cope | -1/+1 |