| Age | Commit message (Expand) | Author | Lines |
| 2020-04-06 | Use TypeRelating for instantiating query responses | Matthew Jasper | -7/+78 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -11/+11 |
| 2020-03-06 | Don't redundantly repeat field names (clippy::redundant_field_names) | Matthias Krüger | -17/+17 |
| 2020-03-06 | fix various typos | Matthias Krüger | -11/+11 |
| 2020-03-06 | Auto merge of #69614 - estebank:ice-age, r=davidtwco | bors | -7/+11 |
| 2020-03-05 | Don't pass &mut where immutable reference (&) is sufficient (clippy::unnecess... | Matthias Krüger | -1/+1 |
| 2020-03-05 | Use righthand '&' instead of lefthand "ref". (clippy::toplevel_ref_arg) | Matthias Krüger | -1/+1 |
| 2020-03-03 | Rollup merge of #69650 - matthiaskrgr:clnp, r=varkor | Dylan DPC | -6/+2 |
| 2020-03-03 | Rollup merge of #69619 - matthiaskrgr:misc, r=eddyb | Yuki Okushi | -2/+2 |
| 2020-03-03 | Use .nth(x) instead of .skip(x).next() on iterators. | Matthias Krüger | -6/+2 |
| 2020-03-02 | Remove chalk integration | CAD97 | -203/+18 |
| 2020-03-02 | use values() or keys() respectively when iterating only over keys or values o... | Matthias Krüger | -2/+2 |
| 2020-03-01 | Fix use of `has_infer_types` | Matthew Jasper | -39/+15 |
| 2020-03-01 | `delay_span_bug` when codegen cannot select obligation | Esteban Küber | -7/+11 |
| 2020-03-01 | Rollup merge of #69569 - matthiaskrgr:nonminimal_bool, r=mark-Simulacrum | Dylan DPC | -4/+4 |
| 2020-03-01 | Auto merge of #69592 - petrochenkov:nosyntax, r=Centril | bors | -7/+7 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -7/+7 |
| 2020-02-29 | Rollup merge of #69572 - matthiaskrgr:try_err_and_iter_on_ref, r=Centril | Dylan DPC | -6/+4 |
| 2020-02-29 | Make it build again | Vadim Petrochenkov | -1/+1 |
| 2020-02-29 | Auto merge of #69570 - Dylan-DPC:rollup-d6boczt, r=Dylan-DPC | bors | -5/+5 |
| 2020-02-29 | simplify boolean expressions | Matthias Krüger | -4/+4 |
| 2020-02-29 | Auto merge of #69255 - estebank:e0599-details, r=varkor | bors | -2/+1 |
| 2020-02-29 | use .iter() instead of .into_iter() on references. | Matthias Krüger | -6/+4 |
| 2020-02-29 | Rollup merge of #69567 - matthiaskrgr:useless_fmt, r=nagisa | Dylan DPC | -1/+1 |
| 2020-02-29 | Rollup merge of #69551 - matthiaskrgr:len_zero, r=Mark-Simulacrum | Dylan DPC | -4/+4 |
| 2020-02-29 | use .to_string() instead of format!() macro to create strings | Matthias Krüger | -1/+1 |
| 2020-02-28 | Add more context to E0599 errors | Esteban Küber | -2/+1 |
| 2020-02-28 | Rollup merge of #69547 - matthiaskrgr:more_misc, r=Mark-Simulacrum | Mazdak Farrokhzad | -8/+4 |
| 2020-02-28 | Rollup merge of #69541 - dotdash:format, r=Mark-Simulacrum | Mazdak Farrokhzad | -6/+4 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -4/+4 |
| 2020-02-28 | remove redundant clones, references to operands, explicit boolean comparisons... | Matthias Krüger | -8/+4 |
| 2020-02-28 | Auto merge of #68505 - skinny121:canonicalize-const-eval-inputs, r=nikomatsakis | bors | -35/+50 |
| 2020-02-28 | Rollup merge of #69529 - matthiaskrgr:clippy_identity_conversion, r=Mark-Simu... | Dylan DPC | -3/+2 |
| 2020-02-28 | Rollup merge of #69496 - matthiaskrgr:filter_next, r=ecstatic-morse | Dylan DPC | -3/+2 |
| 2020-02-27 | don't use .into() to convert types into identical types. | Matthias Krüger | -3/+2 |
| 2020-02-27 | Remove unneeded calls to format!() | Björn Steinbrink | -6/+4 |
| 2020-02-27 | use find(x) instead of filter(x).next() | Matthias Krüger | -3/+2 |
| 2020-02-26 | don't take redundant references to operands | Matthias Krüger | -1/+1 |
| 2020-02-26 | Auto merge of #61812 - jonas-schievink:assoc-ty-defaults, r=nikomatsakis | bors | -14/+29 |
| 2020-02-26 | Rollup merge of #69429 - matthiaskrgr:clippy_, r=estebank | Dylan DPC | -1/+1 |
| 2020-02-24 | Replace uses of Cell::get + Cell::set with Cell::replace. | Ana-Maria | -4/+2 |
| 2020-02-24 | librustc{, codegen_ssa,infer,mir_build}: don't clone types that are copy | Matthias Krüger | -1/+1 |
| 2020-02-22 | Rename CodeMap to SourceMap follow up | Maxim Zholobak | -4/+4 |
| 2020-02-21 | Auto merge of #69242 - cjgillot:object_violations, r=Zoxc | bors | -149/+12 |
| 2020-02-21 | Implement RFC 2532 – Associated Type Defaults | Jonas Schievink | -14/+29 |
| 2020-02-20 | Auto merge of #69072 - ecstatic-morse:associated-items, r=petrochenkov | bors | -8/+11 |
| 2020-02-20 | Rollup merge of #69305 - estebank:consider-lt, r=Dylan-DPC | Mazdak Farrokhzad | -10/+12 |
| 2020-02-20 | Canonicalize inputs to const eval where needed. | Ben Lewis | -35/+50 |
| 2020-02-19 | Tweak binding lifetime suggestion text | Esteban Küber | -10/+12 |
| 2020-02-19 | Make lookup of associated item by name O(log n) | Dylan MacKenzie | -8/+11 |