| Age | Commit message (Expand) | Author | Lines |
| 2020-09-11 | Add test cases and address review comments | Esteban Küber | -19/+156 |
| 2020-09-11 | Make suggestion more complete | Esteban Küber | -14/+75 |
| 2020-09-11 | Make suggestion have a more targetted underline | Esteban Küber | -23/+21 |
| 2020-09-11 | Suggest boxed trait objects in tail `match` and `if` expressions | Esteban Küber | -12/+203 |
| 2020-09-11 | Use structured suggestion for `impl T` to `Box<dyn T>` | Esteban Küber | -34/+50 |
| 2020-09-11 | Auto merge of #76573 - Mark-Simulacrum:bootstrap-with-external-llvm, r=alexcr... | bors | -0/+9 |
| 2020-09-11 | Auto merge of #75611 - JulianKnodt:cg_enum_err, r=lcnr | bors | -17/+197 |
| 2020-09-11 | Auto merge of #76381 - petrochenkov:nomingwcomp, r=Mark-Simulacrum | bors | -8/+0 |
| 2020-09-11 | Auto merge of #75800 - Aaron1011:feature/full-nt-tokens, r=petrochenkov | bors | -135/+645 |
| 2020-09-10 | Auto merge of #74437 - ssomers:btree_no_root_in_noderef, r=Mark-Simulacrum | bors | -117/+163 |
| 2020-09-10 | Fully integrate token collection for additional AST structs | Aaron Hill | -22/+338 |
| 2020-09-10 | Attach tokens to `ast::Stmt` | Aaron Hill | -15/+56 |
| 2020-09-10 | Attach `TokenStream` to `ast::Visibility` | Aaron Hill | -50/+120 |
| 2020-09-10 | Attach `TokenStream` to `ast::Path` | Aaron Hill | -21/+41 |
| 2020-09-10 | Attach tokens to `NtMeta` (`ast::AttrItem`) | Aaron Hill | -6/+17 |
| 2020-09-10 | Collect tokens when handling `:literal` matcher | Aaron Hill | -2/+10 |
| 2020-09-10 | Attach `TokenStream` to `ast::Ty` | Aaron Hill | -15/+42 |
| 2020-09-10 | Attach `TokenStream` to `ast::Block` | Aaron Hill | -4/+21 |
| 2020-09-10 | Auto merge of #76574 - flip1995:clippyup, r=Manishearth | bors | -416/+1360 |
| 2020-09-10 | Auto merge of #76582 - tmandry:rollup-lwwc93b, r=tmandry | bors | -301/+1320 |
| 2020-09-10 | Rollup merge of #76568 - GuillaumeGomez:add-missing-examples, r=jyn514 | Tyler Mandry | -0/+77 |
| 2020-09-10 | Rollup merge of #76567 - matthiaskrgr:clone_on_copy, r=varkor | Tyler Mandry | -31/+33 |
| 2020-09-10 | Rollup merge of #76565 - matthiaskrgr:box_place, r=oli-obk | Tyler Mandry | -1/+1 |
| 2020-09-10 | Rollup merge of #76563 - yokodake:patch-1, r=jonas-schievink | Tyler Mandry | -1/+1 |
| 2020-09-10 | Rollup merge of #76559 - lcnr:const-evaluatable, r=oli-obk | Tyler Mandry | -17/+137 |
| 2020-09-10 | Rollup merge of #76555 - alilleybrinker:reword_trivial_casts_lint_doc, r=stev... | Tyler Mandry | -1/+2 |
| 2020-09-10 | Rollup merge of #76548 - tmiasko:validate, r=davidtwco | Tyler Mandry | -2/+26 |
| 2020-09-10 | Rollup merge of #76524 - davidtwco:issue-76077-inaccessible-private-fields, r... | Tyler Mandry | -42/+244 |
| 2020-09-10 | Rollup merge of #76514 - hameerabbasi:const-generics-revs, r=lcnr | Tyler Mandry | -169/+492 |
| 2020-09-10 | Rollup merge of #76289 - arijit79:master, r=jyn514 | Tyler Mandry | -0/+23 |
| 2020-09-10 | Rollup merge of #75857 - dtolnay:unsafe, r=nagisa | Tyler Mandry | -37/+284 |
| 2020-09-10 | typeck/pat: inaccessible private fields | David Wood | -9/+141 |
| 2020-09-10 | typeck/expr: inaccessible private fields | David Wood | -33/+103 |
| 2020-09-10 | Auto merge of #76564 - pietroalbini:ci-avoid-wasting-10-minutes, r=Mark-Simul... | bors | -18/+0 |
| 2020-09-10 | Only copy LLVM into rust-dev with internal LLVM | Mark Rousskov | -0/+9 |
| 2020-09-10 | Merge commit '5034d47f721ff4c3a3ff2aca9ef2ef3e1d067f9f' into clippyup | flip1995 | -416/+1360 |
| 2020-09-10 | Auto merge of #5980 - matsujika:create-dir, r=flip1995 | bors | -0/+114 |
| 2020-09-10 | Add docs about crate level documentation support | arijit79 | -0/+23 |
| 2020-09-10 | Auto merge of #5931 - montrivo:unit-arg, r=flip1995 | bors | -137/+203 |
| 2020-09-10 | Syntactically permit unsafety on mods | David Tolnay | -37/+284 |
| 2020-09-10 | Auto merge of #6023 - matthiaskrgr:box, r=flip1995 | bors | -0/+3 |
| 2020-09-10 | Auto merge of #6027 - flip1995:rustup, r=flip1995 | bors | -54/+21 |
| 2020-09-10 | Cleanup of rustup | flip1995 | -16/+7 |
| 2020-09-10 | Add missing examples on core traits' method | Guillaume Gomez | -0/+77 |
| 2020-09-10 | use push(char) instead of push_str(&str) to add single chars to strings | Matthias Krüger | -29/+31 |
| 2020-09-10 | don't clone types that are copy (clippy::clone_on_copy) | Matthias Krüger | -1/+1 |
| 2020-09-10 | use String::from instead of format!() macro to craft string clippy::useless_f... | Matthias Krüger | -1/+1 |
| 2020-09-10 | take reference to Place directly instead of taking reference to Box<Place> | Matthias Krüger | -1/+1 |
| 2020-09-10 | ci: avoid moving the build directory on GHA | Pietro Albini | -18/+0 |
| 2020-09-10 | Auto merge of #76378 - petrochenkov:lldtest, r=Mark-Simulacrum | bors | -21/+41 |