| Age | Commit message (Expand) | Author | Lines |
| 2023-10-30 | Only run panic tests on targets that can unwind | Oli Scherer | -1/+2 |
| 2023-10-30 | Poison check_well_formed if method receivers are invalid to prevent typeck fr... | Oli Scherer | -17/+41 |
| 2023-10-30 | Move deprecation_in_effect to inherent method on Deprecation | David Tolnay | -24/+21 |
| 2023-10-30 | rustdoc: elide cross-crate default generic arguments | León Orell Valerian Liehr | -41/+272 |
| 2023-10-30 | Auto merge of #117267 - RalfJung:miri-tests, r=Mark-Simulacrum | bors | -3/+30 |
| 2023-10-30 | Refactor: move suggestion functions from demand to suggestions | yukang | -1273/+1272 |
| 2023-10-30 | Explicitly reject const C-variadic functions | Nicholas Bishop | -22/+120 |
| 2023-10-30 | Correctly handle nested or-patterns in column-wise analyses | Nadrieril | -1/+7 |
| 2023-10-30 | Fix bad-c-variadic error being emitted multiple times | Nicholas Bishop | -43/+31 |
| 2023-10-30 | Don't emit delayed good-path bugs on panic | Michael Goulet | -1/+1 |
| 2023-10-30 | Some manual rustfmt as rustfmt is broken on this file | Oli Scherer | -3/+4 |
| 2023-10-30 | Merge two equal match arms | Oli Scherer | -6/+1 |
| 2023-10-30 | Don't treat closures/coroutines as part of the public API | Oli Scherer | -36/+16 |
| 2023-10-30 | Add regression test | Oli Scherer | -0/+52 |
| 2023-10-30 | Fix #117284, Fix unused variables lint issue for args in macro | yukang | -11/+84 |
| 2023-10-30 | Fix missing leading space in suggestion | Gurinder Singh | -2/+90 |
| 2023-10-30 | Auto merge of #116939 - chenx97:bootstrap-fd-lock, r=onur-ozkan | bors | -86/+68 |
| 2023-10-30 | Auto merge of #11735 - rust-lang:fix-11568, r=blyxyas | bors | -3/+10 |
| 2023-10-30 | Auto merge of #117387 - fmease:rollup-5958nsf, r=fmease | bors | -459/+386 |
| 2023-10-30 | Add a custom panic message for resuming `gen` blocks after they panicked | Oli Scherer | -2/+40 |
| 2023-10-30 | Talk about `gen fn` in diagnostics about `gen fn` | Oli Scherer | -8/+8 |
| 2023-10-30 | update which targets we test Miri on | Ralf Jung | -3/+30 |
| 2023-10-30 | Rollup merge of #117385 - RalfJung:deduce_param_attrs, r=oli-obk | León Orell Valerian Liehr | -0/+1 |
| 2023-10-30 | Rollup merge of #117382 - gurry:114529-ice-const-eval, r=oli-obk | León Orell Valerian Liehr | -4/+58 |
| 2023-10-30 | Rollup merge of #117371 - compiler-errors:unique-params, r=oli-obk | León Orell Valerian Liehr | -2/+37 |
| 2023-10-30 | Rollup merge of #117365 - bjorn3:sync_cg_clif-2023-10-29, r=oli-obk | León Orell Valerian Liehr | -334/+100 |
| 2023-10-30 | Rollup merge of #117350 - Zalathar:counters-indent, r=oli-obk | León Orell Valerian Liehr | -78/+19 |
| 2023-10-30 | Rollup merge of #117205 - weiznich:multiple_notes_for_on_unimplemented, r=com... | León Orell Valerian Liehr | -23/+111 |
| 2023-10-30 | Rollup merge of #117177 - Ayush1325:uefi-alloc-type, r=workingjubilee | León Orell Valerian Liehr | -3/+19 |
| 2023-10-30 | Rollup merge of #117147 - DaniPopes:pphir-fn-variadic, r=compiler-errors | León Orell Valerian Liehr | -15/+41 |
| 2023-10-30 | Streamline some `use` items. | Nicholas Nethercote | -17/+7 |
| 2023-10-30 | Remove an unnecessary `drop`. | Nicholas Nethercote | -3/+1 |
| 2023-10-30 | Streamline `collect_crate_types`. | Nicholas Nethercote | -15/+7 |
| 2023-10-30 | deduce_param_attrs: explain a read-only case | Ralf Jung | -0/+1 |
| 2023-10-30 | improve and fix x install | onur-ozkan | -22/+30 |
| 2023-10-30 | bootstrap: bump fd-lock, clap and windows. | chenx97 | -86/+68 |
| 2023-10-30 | Fail typeck for illegal break-with-value | Gurinder Singh | -4/+58 |
| 2023-10-30 | Auto merge of #3150 - RalfJung:undercore-match, r=RalfJung | bors | -16/+87 |
| 2023-10-30 | make sure we catch UB with _ pattern in various syntactic positions | Ralf Jung | -16/+87 |
| 2023-10-29 | Delete unused InvalidDeprecationVersion diagnostic | David Tolnay | -15/+0 |
| 2023-10-29 | Store version of `deprecated` attribute in structured form | David Tolnay | -105/+85 |
| 2023-10-29 | Fill in syntactically valid deprecation version in tests | David Tolnay | -12/+12 |
| 2023-10-30 | Use ImageDataType for allocation type | Ayush Singh | -3/+19 |
| 2023-10-30 | Remove `check_output`. | Nicholas Nethercote | -21/+3 |
| 2023-10-29 | Rename Since -> StableSince in preparation for a DeprecatedSince | David Tolnay | -4/+4 |
| 2023-10-29 | Rename Since -> StableSince in preparation for a DeprecatedSince | David Tolnay | -28/+28 |
| 2023-10-30 | Wrap some overlong comments. | Nicholas Nethercote | -10/+12 |
| 2023-10-30 | Remove out-of-date comment. | Nicholas Nethercote | -2/+0 |
| 2023-10-30 | Improve readability of `parse_check_cfg`. | Nicholas Nethercote | -26/+13 |
| 2023-10-30 | Auto merge of #116485 - coastalwhite:stabilize-riscv-target-features, r=Amanieu | bors | -20/+20 |