| Age | Commit message (Expand) | Author | Lines |
| 2019-12-14 | Rebase fixes | Mark Rousskov | -1/+10 |
| 2019-12-14 | def_collector: Do not forget to save indices of fields with multiple attributes | Vadim Petrochenkov | -9/+7 |
| 2019-12-05 | Fix ICE when trying to suggest `Type<>` instead of `Type()` | Esteban Küber | -9/+10 |
| 2019-11-03 | Utilize Resolver lint buffer during HIR lowering | Mark Rousskov | -4/+7 |
| 2019-10-29 | Rollup merge of #65562 - Patryk27:master, r=estebank | Mazdak Farrokhzad | -3/+11 |
| 2019-10-29 | Rollup merge of #65294 - varkor:lint-inline-prototype, r=matthewjasper | Mazdak Farrokhzad | -90/+223 |
| 2019-10-28 | Rollup merge of #65893 - jafern14:let-expr-stable-error-messaging, r=Centril | Mazdak Farrokhzad | -5/+14 |
| 2019-10-28 | Output previous stable error messaging when using stable build. | Agustin Fernandez | -5/+14 |
| 2019-10-28 | Improve pretty-printing for compound qualified paths. | Patryk Wychowaniec | -1/+11 |
| 2019-10-28 | Improve the "try using a variant of the expected type" hint. | Patryk Wychowaniec | -2/+0 |
| 2019-10-28 | rustc: use IndexVec<DefIndex, T> instead of Vec<T>. | Eduard-Mihai Burtescu | -23/+17 |
| 2019-10-27 | rustc, rustc_passes: don't depend on syntax_expand. | Mazdak Farrokhzad | -7/+7 |
| 2019-10-26 | Make inline associated constants a future compatibility warning | varkor | -8/+26 |
| 2019-10-26 | Permit #[track_caller] on inherent methods | varkor | -12/+32 |
| 2019-10-25 | Permit `#[target_feature]` on method implementations | varkor | -1/+1 |
| 2019-10-25 | Move handling of `#[track_caller]` to `check_attr` | varkor | -23/+33 |
| 2019-10-25 | Handle `ImplItem` in `check_attr` | varkor | -1/+16 |
| 2019-10-25 | Refactor `check_track_caller` | varkor | -6/+12 |
| 2019-10-25 | Improve comments | varkor | -2/+2 |
| 2019-10-25 | Emit warning for ignored #[inline] on foreign function prototypes | varkor | -0/+18 |
| 2019-10-25 | Emit warning for ignored #[inline] on trait method prototypes | varkor | -0/+34 |
| 2019-10-25 | Refactor check_attr | varkor | -63/+75 |
| 2019-10-25 | rustc: replace a few `.cloned()` with `.copied()`. | Eduard-Mihai Burtescu | -3/+3 |
| 2019-10-25 | rustc: make DefPathData (and friends) Copy (now that it uses Symbol). | Eduard-Mihai Burtescu | -5/+5 |
| 2019-10-24 | Turn crate store into a resolver output | Vadim Petrochenkov | -7/+5 |
| 2019-10-23 | Rollup merge of #65657 - nnethercote:rm-InternedString-properly, r=eddyb | Mazdak Farrokhzad | -47/+44 |
| 2019-10-21 | Remove many unnecessary trait derivations. | Nicholas Nethercote | -8/+5 |
| 2019-10-21 | Remove `InternedString`. | Nicholas Nethercote | -2/+2 |
| 2019-10-21 | Convert fields within `DefPathData` from `InternedString` to `Symbol`. | Nicholas Nethercote | -42/+39 |
| 2019-10-21 | Convert some `InternedString`s to `Symbols`. | Nicholas Nethercote | -3/+3 |
| 2019-10-19 | Rollup merge of #65192 - estebank:restrict-bound, r=matthewjasper | Mazdak Farrokhzad | -0/+6 |
| 2019-10-19 | Rollup merge of #64007 - estebank:overlapping-patterns, r=matthewjasper | Mazdak Farrokhzad | -0/+9 |
| 2019-10-19 | Rollup merge of #65545 - nnethercote:more-symbol-cleanups, r=petrochenkov | Mazdak Farrokhzad | -3/+3 |
| 2019-10-19 | expand: Simplify expansion of derives | Vadim Petrochenkov | -1/+1 |
| 2019-10-18 | Remove `Hash` impls for `DefPath`, `DisambiguatedDefPathData`, and `DefKey`. | Nicholas Nethercote | -3/+3 |
| 2019-10-16 | Deduplicate code for formatting `RangeEnd` | Esteban Küber | -0/+9 |
| 2019-10-16 | move syntax::ext to new crate syntax_expand | Mazdak Farrokhzad | -8/+8 |
| 2019-10-15 | Rollup merge of #65307 - Phosphorus15:master, r=varkor | Tyler Mandry | -4/+8 |
| 2019-10-15 | Suggest associated bound restrictions in `impl`s | Esteban Küber | -0/+6 |
| 2019-10-15 | Slides path lifetime to the lifetime resolver | phosphorus | -4/+8 |
| 2019-10-15 | syntax::parse::sess -> syntax::sess | Mazdak Farrokhzad | -4/+4 |
| 2019-10-13 | lowering: connect to parser via function pointer instead | Mazdak Farrokhzad | -10/+8 |
| 2019-10-13 | lowering: don't rely on parser directly. | Mazdak Farrokhzad | -6/+14 |
| 2019-10-13 | token: extract Nonterminal::to_tokenstream to parser. | Mazdak Farrokhzad | -1/+5 |
| 2019-10-10 | query generator kind for error reporting | csmoe | -0/+4 |
| 2019-10-10 | Auto merge of #65077 - estebank:mut-trait-expected, r=nikomatsakis | bors | -0/+7 |
| 2019-10-09 | review comments | Esteban Küber | -1/+1 |
| 2019-10-09 | review comments | Esteban Küber | -0/+7 |
| 2019-10-09 | self-profiling: Add events for everything except trait selection. | Michael Woerister | -0/+4 |
| 2019-10-09 | Rollup merge of #65037 - anp:track-caller, r=oli-obk | Mazdak Farrokhzad | -2/+32 |