| Age | Commit message (Expand) | Author | Lines |
| 2018-11-11 | std: Delete the `alloc_system` crate | Alex Crichton | -14/+9 |
| 2018-11-11 | rustc: Clean up allocator injection logic | Alex Crichton | -96/+17 |
| 2018-11-07 | Rollup merge of #55734 - teresy:shorthand-fields, r=davidtwco | kennytm | -1/+1 |
| 2018-11-06 | refactor: use shorthand fields | teresy | -1/+1 |
| 2018-11-04 | Auto merge of #55349 - bjorn3:rustc_mir_collect_and_partition_mono_items, r=o... | bors | -5/+31 |
| 2018-11-03 | Remove rustc_metadata_utils, which contains only one function | bjorn3 | -5/+31 |
| 2018-10-31 | Make `-Z ls` list the actual filename of external dependencies | Aidan Hobson Sayers | -1/+1 |
| 2018-10-26 | Auto merge of #54626 - alexcrichton:dwarf-generics, r=michaelwoerister | bors | -24/+18 |
| 2018-10-23 | fix typos in various places | Matthias Krüger | -1/+1 |
| 2018-10-20 | Auto merge of #55014 - ljedrz:lazyboye_unwraps, r=matthewjasper | bors | -1/+1 |
| 2018-10-19 | Prefer `Default::default` over `FxHash*::default` in struct constructors | Oliver Scherer | -2/+2 |
| 2018-10-19 | Deprecate the `FxHashMap()` and `FxHashSet()` constructor function hack | Oliver Scherer | -11/+11 |
| 2018-10-19 | Prefer unwrap_or_else to unwrap_or in case of function calls/allocations | ljedrz | -1/+1 |
| 2018-10-03 | Only promote calls to `#[rustc_promotable]` const fns | Oliver Schneider | -16/+2 |
| 2018-09-30 | Auto merge of #54601 - cuviper:prep-1.31, r=Mark-Simulacrum | bors | -1/+1 |
| 2018-09-28 | Auto merge of #54338 - orium:fix-macro-inc-comp, r=nrc | bors | -6/+12 |
| 2018-09-27 | Bump to 1.31.0 and bootstrap from 1.30 beta | Josh Stone | -1/+1 |
| 2018-09-27 | rustc: Tweak filenames encoded into metadata | Alex Crichton | -24/+18 |
| 2018-09-25 | Auto merge of #53693 - scottmcm:marker-trait-attribute, r=nikomatsakis | bors | -0/+4 |
| 2018-09-22 | avoid loading constructor attributes in AdtDef decoding | Ariel Ben-Yehuda | -2/+6 |
| 2018-09-22 | Auto merge of #54265 - arielb1:civilize-proc-macros, r=alexcrichton | bors | -24/+53 |
| 2018-09-20 | Rollup merge of #53470 - bjorn3:warn_metadata_errors, r=alexcrichton | kennytm | -1/+1 |
| 2018-09-19 | Add an is_marker flag to TraitDef | Scott McMurray | -0/+4 |
| 2018-09-19 | Use full name to identify a macro in a `FileName`. | Diogo Sousa | -6/+12 |
| 2018-09-18 | Merge indexed_set.rs into bitvec.rs, and rename it bit_set.rs. | Nicholas Nethercote | -2/+2 |
| 2018-09-15 | avoid leaking host details in proc macro metadata decoding | Ariel Ben-Yehuda | -24/+53 |
| 2018-09-15 | rustc_resolve: always include core, std and meta in the extern prelude. | Eduard-Mihai Burtescu | -20/+61 |
| 2018-09-15 | rustc: add unstable support for --extern crate_name without a path. | Eduard-Mihai Burtescu | -2/+8 |
| 2018-09-14 | Rollup merge of #54095 - kenta7777:kenta7777#53719, r=davidtwco | kennytm | -1/+1 |
| 2018-09-12 | Warn about metadata loader errors | bjorn3 | -1/+1 |
| 2018-09-11 | stabalize infer outlives requirements (RFC 2093). | toidiu | -1/+0 |
| 2018-09-11 | renamed emit_nil to emit_unit | kenta7777 | -1/+1 |
| 2018-09-11 | Revert "renamed emit_nil to emit_unit" | kenta7777 | -1/+1 |
| 2018-09-10 | renamed emit_nil to emit_unit | kenta7777 | -1/+1 |
| 2018-09-06 | crates that provide a `panic_handler` are exempt from `unused_extern_crates` | Jorge Aparicio | -0/+4 |
| 2018-09-06 | Auto merge of #53721 - arielb1:exhaustively-unpun, r=nikomatsakis | bors | -11/+21 |
| 2018-09-01 | move the is_field_list_non_exhaustive flag to VariantDef | Ariel Ben-Yehuda | -11/+21 |
| 2018-08-30 | Rollup merge of #53472 - eddyb:fx-pls, r=pnkfelix | Pietro Albini | -3/+3 |
| 2018-08-29 | Auto merge of #53711 - arielb1:macro-table, r=michaelwoerister | bors | -26/+57 |
| 2018-08-28 | Use FxHash{Map,Set} instead of the default Hash{Map,Set} everywhere in rustc. | Eduard-Mihai Burtescu | -3/+3 |
| 2018-08-27 | Auto merge of #53441 - toidiu:ak-fix53419, r=nikomatsakis | bors | -0/+1 |
| 2018-08-26 | create a valid DefIdTable for proc macro crates | Ariel Ben-Yehuda | -26/+57 |
| 2018-08-26 | fix `is_non_exhaustive` confusion between structs and enums | Ariel Ben-Yehuda | -1/+1 |
| 2018-08-24 | check that adding infer-outlives requirement to all crates works | Niko Matsakis | -0/+1 |
| 2018-08-24 | Rollup merge of #53636 - frewsxcv:frewsxcv-nth, r=rkruppe | kennytm | -1/+1 |
| 2018-08-23 | Prefer `.nth(n)` over `.skip(n).next()`. | Corey Farwell | -1/+1 |
| 2018-08-23 | Auto merge of #53520 - nnethercote:merge-IdxSet-IdxSetBuf, r=nikomatsakis | bors | -2/+2 |
| 2018-08-22 | Replace TyForeign with ForeignTy | varkor | -1/+1 |
| 2018-08-22 | Rename Def::{Param, Foreign} to Def::{TyParam, TyForeign} | varkor | -1/+1 |
| 2018-08-22 | Remove Ty prefix from Ty{Foreign|Param} | varkor | -1/+1 |