| Age | Commit message (Expand) | Author | Lines |
| 2023-05-29 | Swap out CURRENT_RUSTC_VERSION to 1.71.0 | Mark Rousskov | -1/+1 |
| 2023-05-27 | Rollup merge of #111656 - finnbear:string_leak_unbounded_lifetime, r=Amanieu | Matthias Krüger | -2/+2 |
| 2023-05-27 | Auto merge of #111934 - scottmcm:stabilize-hash-one, r=Amanieu | bors | -1/+0 |
| 2023-05-25 | Auto merge of #86844 - bjorn3:global_alloc_improvements, r=pnkfelix | bors | -1/+11 |
| 2023-05-24 | Stabilize `BuildHasher::hash_one` | Scott McMurray | -1/+0 |
| 2023-05-23 | Rollup merge of #111609 - LegionMammal978:internal-unsafe, r=thomcc | Dylan DPC | -4/+5 |
| 2023-05-22 | Auto merge of #111634 - marc0246:arc-new-uninit-bloat, r=thomcc | bors | -6/+19 |
| 2023-05-18 | Rollup merge of #111168 - DaniPopes:arguments-to-string, r=Mark-Simulacrum | Dylan DPC | -0/+9 |
| 2023-05-16 | Use an unbounded lifetime in String::leak. | Finn Bear | -2/+2 |
| 2023-05-16 | Rollup merge of #111592 - Nemo157:fix-vec-capacity-examples, r=joshtriplett | Matthias Krüger | -6/+6 |
| 2023-05-16 | Fix duplicate `arcinner_layout_for_value_layout` calls | marc0246 | -6/+19 |
| 2023-05-15 | Fixed typo | Benjamin Atelsek | -1/+1 |
| 2023-05-15 | Mark internal functions and traits unsafe | LegionMammal978 | -4/+5 |
| 2023-05-15 | Change Vec examples to not assert exact capacity except where it is guaranteed | Wim Looman | -6/+6 |
| 2023-05-11 | Prevent insta-stable no alloc shim support | bjorn3 | -1/+11 |
| 2023-05-09 | Rollup merge of #97320 - usbalbin:stabilize_const_ptr_read, r=m-ou-se | Matthias Krüger | -1/+0 |
| 2023-05-08 | Auto merge of #106621 - ozkanonur:enable-elided-lifetimes-for-doctests, r=Mar... | bors | -16/+16 |
| 2023-05-07 | enable `rust_2018_idioms` for doctests | ozkanonur | -16/+16 |
| 2023-05-05 | Stabilize const_ptr_read | bors | -1/+0 |
| 2023-05-04 | btree_map: `Cursor{,Mut}::peek_prev` must agree | Jubilee Young | -2/+21 |
| 2023-05-03 | Add the basic `ascii::Char` type | Scott McMurray | -0/+10 |
| 2023-05-04 | Specialize ToString implementation for fmt::Arguments | DaniPopes | -0/+9 |
| 2023-04-30 | Auto merge of #103406 - Jules-Bertholet:from_clone_slice_to_box, r=dtolnay | bors | -8/+31 |
| 2023-04-29 | `cfg`-gate `BoxFromSlice` trait | Jules Bertholet | -0/+1 |
| 2023-04-29 | Rollup merge of #110958 - compiler-errors:stdlib-refinement, r=cuviper | Dylan DPC | -17/+65 |
| 2023-04-28 | Make sure that signatures aren't accidental refinements | Michael Goulet | -17/+65 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -19/+19 |
| 2023-04-26 | Loosen `From<&[T]> for Box<[T]>` bound to T: Clone | Jules Bertholet | -8/+30 |
| 2023-04-26 | Rollup merge of #110419 - jsoref:spelling-library, r=jyn514 | Matthias Krüger | -5/+5 |
| 2023-04-26 | Spelling library/ | Josh Soref | -5/+5 |
| 2023-04-25 | Rollup merge of #110796 - madsravn:wake-example, r=Mark-Simulacrum | Matthias Krüger | -1/+2 |
| 2023-04-25 | Updating Wake example to use new 'pin!' macro | Mads Ravn | -1/+2 |
| 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-25 | Revert "Report allocation errors as panics" | Matthias Krüger | -76/+9 |
| 2023-04-25 | Revert "Remove #[alloc_error_handler] from the compiler and library" | Matthias Krüger | -2/+8 |
| 2023-04-25 | Revert "Rename -Zoom=panic to -Zoom=unwind" | Matthias Krüger | -2/+2 |
| 2023-04-22 | Auto merge of #109507 - Amanieu:panic-oom-payload, r=davidtwco | bors | -17/+78 |
| 2023-04-22 | Rollup merge of #110635 - scottmcm:zst-checks, r=the8472 | Yuki Okushi | -14/+6 |
| 2023-04-21 | More `IS_ZST` in `library` | Scott McMurray | -14/+6 |
| 2023-04-20 | More `mem::take` in `library` | Scott McMurray | -1/+1 |
| 2023-04-20 | Don't reexport core::fmt::rt from alloc::fmt. | Mara Bos | -2/+0 |
| 2023-04-16 | Rename -Zoom=panic to -Zoom=unwind | Amanieu d'Antras | -2/+2 |
| 2023-04-16 | Remove #[alloc_error_handler] from the compiler and library | Amanieu d'Antras | -8/+2 |
| 2023-04-16 | Report allocation errors as panics | Amanieu d'Antras | -9/+76 |
| 2023-04-16 | fix alloc | Deadbeef | -12/+6 |
| 2023-04-16 | core is now compilable | Deadbeef | -2/+0 |
| 2023-04-16 | rm const traits in libcore | Deadbeef | -14/+7 |
| 2023-04-14 | Rollup merge of #110244 - kadiwa4:unnecessary_imports, r=JohnTitor | Matthias Krüger | -51/+29 |
| 2023-04-14 | Rollup merge of #110292 - scottmcm:sort-features-2, r=jyn514 | Yuki Okushi | -21/+25 |