| Age | Commit message (Expand) | Author | Lines |
| 2021-09-16 | Auto merge of #88992 - Manishearth:rollup-k9hijii, r=Manishearth | bors | -460/+181 |
| 2021-09-15 | Fix linting when trailing macro expands to a trailing semi | Aaron Hill | -0/+34 |
| 2021-09-15 | Disable debuginfo test on Windows that fails in new cdb version. | Eric Huss | -0/+2 |
| 2021-09-15 | Rollup merge of #88951 - ehuss:update-books, r=ehuss | Manish Goregaokar | -0/+0 |
| 2021-09-15 | Rollup merge of #88907 - WaffleLapkin:targeted_const_fn_with_a_bound_in_impl_... | Manish Goregaokar | -4/+23 |
| 2021-09-15 | Rollup merge of #88841 - notriddle:notriddle/method-parens, r=estebank | Manish Goregaokar | -0/+33 |
| 2021-09-15 | Rollup merge of #88775 - pnkfelix:revert-anon-union-parsing, r=davidtwco | Manish Goregaokar | -454/+27 |
| 2021-09-15 | Rollup merge of #88690 - m-ou-se:macro-braces-dot-question-expr-parse, r=nagisa | Manish Goregaokar | -0/+11 |
| 2021-09-15 | Rollup merge of #87320 - danakj:debug-compilation-dir, r=michaelwoerister | Manish Goregaokar | -2/+87 |
| 2021-09-15 | Allow `panic!("{}", computed_str)` in const fn. | Gary Guo | -37/+83 |
| 2021-09-15 | factor into struct, and comments | Gus Wynn | -21/+49 |
| 2021-09-15 | Update clobber_abi list to include k[1-7] regs | Commeownist | -3/+3 |
| 2021-09-15 | Disable both reproducible-build tests for crate-type=bin | danakj | -9/+5 |
| 2021-09-15 | Move some tests to more reasonable directories | Caio | -37/+2 |
| 2021-09-15 | Disable RemoveZsts in generators to avoid query cycles | Tomasz Miąsko | -0/+16 |
| 2021-09-15 | Disable validate_maintainers. | Eric Huss | -1/+7 |
| 2021-09-15 | Verify bin crates are not deterministic on Windows | danakj | -3/+26 |
| 2021-09-15 | Move tests to library/core/tests | Albin Hedman | -20/+0 |
| 2021-09-15 | Add test for try operator with Option | Albin Hedman | -2/+9 |
| 2021-09-15 | Add test for try operator on Result | Albin Hedman | -0/+16 |
| 2021-09-15 | Add tests for feature(const_identity_convert) | Albin Hedman | -0/+20 |
| 2021-09-15 | Move object safety suggestions to the end of the error | Esteban Kuber | -40/+40 |
| 2021-09-15 | Check for shadowing issues involving block labels | Tomasz Miąsko | -20/+56 |
| 2021-09-15 | Coerce const FnDefs to implement const Fn traits | Deadbeef | -0/+31 |
| 2021-09-15 | Move is_const_fn to under TyCtxt | Deadbeef | -4/+3 |
| 2021-09-15 | Auto merge of #88619 - GuillaumeGomez:simplify-std-os-reexports, r=Amanieu | bors | -1/+1 |
| 2021-09-15 | Auto merge of #88558 - fee1-dead:const-drop, r=oli-obk | bors | -0/+274 |
| 2021-09-14 | Update books | Eric Huss | -0/+0 |
| 2021-09-15 | Point to closure when emitting 'cannot move out' for captured variable | Fabian Wolff | -211/+495 |
| 2021-09-14 | update test | asquared31415 | -4/+5 |
| 2021-09-14 | Fix ICE when `start` lang item has wrong generics | asquared31415 | -11/+30 |
| 2021-09-14 | Add reachable_patterns lint to rfc-2008-non_exhaustive | Devin Ragotzy | -5/+340 |
| 2021-09-14 | Auto merge of #73314 - GuillaumeGomez:display-warnings, r=jyn514 | bors | -25/+66 |
| 2021-09-14 | Use on-disk-hash-table format for DefPathHashMap in hir::definitions. | Michael Woerister | -0/+1 |
| 2021-09-14 | Add test for --display-doctest-warnings option | Guillaume Gomez | -0/+33 |
| 2021-09-14 | Rename --display-warnings to --display-doctest-warnings | Guillaume Gomez | -25/+33 |
| 2021-09-14 | Auto merge of #88914 - GuillaumeGomez:rollup-h5svc6w, r=GuillaumeGomez | bors | -13/+140 |
| 2021-09-13 | Auto merge of #87794 - bonega:enum_niche_prefer_zero, r=nagisa | bors | -0/+39 |
| 2021-09-13 | enum niche allocation grows toward zero if possible | Andreas Liljeqvist | -0/+39 |
| 2021-09-13 | Update permissions path for clippy lint | Guillaume Gomez | -1/+1 |
| 2021-09-13 | Rollup merge of #88896 - GuillaumeGomez:flakyness, r=camelid | Guillaume Gomez | -0/+1 |
| 2021-09-13 | Rollup merge of #88894 - FabianWolff:issue-88818, r=estebank | Guillaume Gomez | -0/+38 |
| 2021-09-13 | Rollup merge of #88885 - GuillaumeGomez:fix-jump-def-background, r=camelid | Guillaume Gomez | -1/+49 |
| 2021-09-13 | Rollup merge of #88851 - fee1-dead:dup-bound, r=oli-obk | Guillaume Gomez | -4/+9 |
| 2021-09-13 | Rollup merge of #88033 - GuillaumeGomez:jump-to-def-primitive, r=jyn514 | Guillaume Gomez | -8/+43 |
| 2021-09-13 | * Enable generate-link-to-def feature on a rustdoc GUI test | Guillaume Gomez | -0/+48 |
| 2021-09-13 | Improve error message for type mismatch in generator arguments | Fabian Wolff | -0/+31 |
| 2021-09-13 | Auto merge of #87915 - estebank:fancy-spans, r=oli-obk | bors | -849/+1053 |
| 2021-09-13 | Add negative test in macro-braces-dot-question.rs. | Mara Bos | -0/+2 |
| 2021-09-13 | Add test for primitive in "jump to definition" feature | Guillaume Gomez | -1/+24 |