| Age | Commit message (Expand) | Author | Lines |
| 2023-05-04 | Optimize `Iterator` implementation for `&mut impl Iterator + Sized` | Benoît du Garreau | -0/+130 |
| 2023-05-04 | Add `is_positive` method for signed non-zero integers. | John Millikin | -0/+26 |
| 2023-05-03 | Add the basic `ascii::Char` type | Scott McMurray | -1/+674 |
| 2023-05-03 | Rollup merge of #111127 - xfix:const-slice-flatten, r=scottmcm | Manish Goregaokar | -1/+1 |
| 2023-05-03 | Rollup merge of #105452 - rcvalle:rust-cfi-3, r=bjorn3 | Manish Goregaokar | -0/+1 |
| 2023-05-03 | Rollup merge of #97594 - WaffleLapkin:array_tuple_conv, r=ChrisDenton | Manish Goregaokar | -0/+40 |
| 2023-05-03 | Add cross-language LLVM CFI support to the Rust compiler | Ramon de C Valle | -0/+1 |
| 2023-05-03 | Mention array<->tuple convs in docs | Maybe Waffle | -0/+20 |
| 2023-05-03 | Constify slice flatten method | Konrad Borowski | -1/+1 |
| 2023-05-03 | Inline SocketAddr methods | Konrad Borowski | -0/+27 |
| 2023-05-02 | Remove `[]` <-> `()` `From` convertions | Maybe Waffle | -14/+0 |
| 2023-05-02 | Use metavar `${count(x)}` instead of reimplementing it | Maybe Waffle | -9/+3 |
| 2023-05-02 | implement tuple<->array convertions via `From` | Maybe Waffle | -0/+40 |
| 2023-05-02 | rm diag item, use lang item | Deadbeef | -1/+0 |
| 2023-05-02 | initial step towards implementing C string literals | Deadbeef | -0/+1 |
| 2023-05-02 | Rollup merge of #108161 - WaffleLapkin:const_param_ty, r=BoxyUwU | Dylan DPC | -52/+132 |
| 2023-05-02 | Rollup merge of #105076 - mina86:a, r=scottmcm | Dylan DPC | -206/+273 |
| 2023-05-01 | Auto merge of #111066 - matthiaskrgr:rollup-4k6rj23, r=matthiaskrgr | bors | -1/+6 |
| 2023-05-01 | Rollup merge of #111065 - est31:send_mut_ref, r=m-ou-se | Matthias Krüger | -1/+6 |
| 2023-05-01 | Explicitly document how Send and Sync relate to references | est31 | -1/+6 |
| 2023-05-01 | Auto merge of #111010 - scottmcm:mem-replace-simpler, r=WaffleLapkin | bors | -12/+35 |
| 2023-05-01 | Fix `StructuralEq` impls for `&T`, `[T]` and `[T; N]` | Maybe Waffle | -3/+3 |
| 2023-04-30 | Codegen fewer instructions in `mem::replace` | Scott McMurray | -12/+35 |
| 2023-05-01 | Stabilize feature `cstr_is_empty` | John Millikin | -3/+2 |
| 2023-05-01 | Rollup merge of #110823 - compiler-errors:tweak-await-span, r=b-naber | Matthias Krüger | -0/+1 |
| 2023-04-30 | Rollup merge of #111000 - JohnBobbo96:core_option_unneeded_function, r=jyn514 | Matthias Krüger | -6/+2 |
| 2023-04-30 | a bit more usize::from | Michal Nazarewicz | -1/+3 |
| 2023-04-30 | Auto merge of #110935 - scottmcm:always-ord, r=Mark-Simulacrum | bors | -8/+8 |
| 2023-04-30 | review | Michal Nazarewicz | -15/+15 |
| 2023-04-30 | Rollup merge of #110997 - scottmcm:slice-iter-comments, r=the8472 | Matthias Krüger | -6/+20 |
| 2023-04-29 | Remove unneeded function call in `core::option`. | John Bobbo | -6/+2 |
| 2023-04-29 | Improve internal field comments on `slice::Iter(Mut)` | Scott McMurray | -6/+20 |
| 2023-04-29 | Rollup merge of #110958 - compiler-errors:stdlib-refinement, r=cuviper | Dylan DPC | -6/+18 |
| 2023-04-28 | Make sure that signatures aren't accidental refinements | Michael Goulet | -6/+18 |
| 2023-04-28 | handle cfg(bootstrap) | Pietro Albini | -290/+63 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -39/+39 |
| 2023-04-28 | Auto merge of #110837 - scottmcm:offset-for-add, r=compiler-errors | bors | -3/+41 |
| 2023-04-27 | `inline(always)` for `lt`/`le`/`ge`/`gt` on integers and floats | Scott McMurray | -8/+8 |
| 2023-04-27 | Also use `mir::Offset` for pointer `add` | Scott McMurray | -3/+41 |
| 2023-04-28 | Rollup merge of #110766 - m-ou-se:fmt-rt, r=jyn514 | Matthias Krüger | -200/+200 |
| 2023-04-27 | Don't call await a method | Michael Goulet | -0/+1 |
| 2023-04-27 | Fix some marker impls | Maybe Waffle | -4/+4 |
| 2023-04-27 | Add FIXMEs | Maybe Waffle | -0/+2 |
| 2023-04-27 | Impl `StructuralEq` & `ConstParamTy` for `str`, `&T`, `[T; N]` and `[T]` | Maybe Waffle | -0/+9 |
| 2023-04-27 | Add a macro to conveniently implement marker traits | Maybe Waffle | -108/+114 |
| 2023-04-27 | Remove `feature(const_param_ty_trait)`, use `adt_const_params` instead | Maybe Waffle | -15/+15 |
| 2023-04-27 | Add a `ConstParamTy` trait | Maybe Waffle | -0/+34 |
| 2023-04-27 | pub -> pub(super). | Mara Bos | -1/+1 |
| 2023-04-27 | Implement `StructuralEq` for integers, `bool` and `char` | Maybe Waffle | -0/+29 |
| 2023-04-27 | Auto merge of #110562 - ComputerDruid:riscv, r=tmandry | bors | -1/+4 |