| Age | Commit message (Expand) | Author | Lines |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -1/+1 |
| 2016-06-10 | Introduce TyCtxt::expect_def/expect_resolution helpers and use them where pos... | Vadim Petrochenkov | -6/+6 |
| 2016-05-30 | stable features lint warning mentions version stabilized | Zack M. Davis | -11/+17 |
| 2016-05-26 | Replace pat_adjust_pos with an iterator adapter | Vadim Petrochenkov | -4/+3 |
| 2016-05-26 | Implement `..` in tuple (struct) patterns | Vadim Petrochenkov | -4/+5 |
| 2016-05-11 | Fixup indentation after methodification. | Eduard Burtescu | -31/+31 |
| 2016-05-11 | rustc: Split 'tcx into 'gcx and 'tcx for InferCtxt and its users. | Eduard Burtescu | -21/+37 |
| 2016-05-11 | rustc: Replace &'a TyCtxt<'tcx> with a TyCtxt<'a, 'tcx> wrapper. | Eduard Burtescu | -20/+22 |
| 2016-05-11 | rustc: Avoid free functions taking &TyCtxt and &InferCtxt. | Eduard Burtescu | -14/+16 |
| 2016-04-12 | Remove unused trait imports | Seo Sanghyeon | -1/+1 |
| 2016-04-06 | rustc: move middle::{def,def_id,pat_util} to hir. | Eduard Burtescu | -2/+2 |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -4/+4 |
| 2016-03-31 | librustc: replace span_bug calls with span_bug!() | Benjamin Herr | -9/+9 |
| 2016-03-27 | rustc: move cfg, infer, traits and ty from middle to top-level. | Eduard Burtescu | -1/+1 |
| 2016-03-03 | Rename middle::ty::ctxt to TyCtxt | Jeffrey Seyfried | -17/+17 |
| 2016-03-02 | Move span into `StructField` | Vadim Petrochenkov | -1/+1 |
| 2016-02-16 | Split PatKind::Enum into PatKind::TupleStruct and PatKind::Path | Vadim Petrochenkov | -2/+2 |
| 2016-02-14 | Rename hir::Pat_ and its variants | Vadim Petrochenkov | -4/+4 |
| 2016-02-05 | Instrument a bunch of tasks that employ the HIR map in one way or | Niko Matsakis | -3/+9 |
| 2016-01-20 | Rename Def's variants and don't reexport them | Vadim Petrochenkov | -4/+4 |
| 2016-01-14 | Require stability annotations on fields of tuple variants | Vadim Petrochenkov | -15/+1 |
| 2016-01-05 | Annotate the compiler with information about what it is doing when. | Niko Matsakis | -2/+3 |
| 2015-12-30 | use structured errors | Nick Cameron | -8/+10 |
| 2015-12-18 | Abstract away differences between Vec and ptr::P in HIR | Vadim Petrochenkov | -1/+1 |
| 2015-12-17 | Remove unused imports | Jeffrey Seyfried | -1/+1 |
| 2015-12-12 | Address the review comments | Vadim Petrochenkov | -59/+4 |
| 2015-12-12 | Implement `#[deprecated]` attribute (RFC 1270) | Vadim Petrochenkov | -44/+125 |
| 2015-11-26 | split the metadata code into rustc_metadata | Ariel Ben-Yehuda | -2/+1 |
| 2015-11-26 | make CrateStore a trait object | Ariel Ben-Yehuda | -1/+1 |
| 2015-11-26 | stop using csearch in librustc and librustc_lint | Ariel Ben-Yehuda | -3/+3 |
| 2015-11-26 | Consider a crate staged if it has `stable` or `unstable` in its root | Vadim Petrochenkov | -3/+11 |
| 2015-11-25 | Remove `#[staged_api]` | Vadim Petrochenkov | -12/+2 |
| 2015-11-23 | Auto merge of #29952 - petrochenkov:depr, r=brson | bors | -1/+1 |
| 2015-11-20 | Rename #[deprecated] to #[rustc_deprecated] | Vadim Petrochenkov | -1/+1 |
| 2015-11-19 | Changes to data produced by privacy pass | Vadim Petrochenkov | -5/+5 |
| 2015-11-18 | Various straight-forward ports that override `visit_nested_items` | Niko Matsakis | -18/+30 |
| 2015-11-18 | Review fixes | Vadim Petrochenkov | -18/+23 |
| 2015-11-18 | Rework stability annotation pass | Vadim Petrochenkov | -130/+147 |
| 2015-11-02 | Auto merge of #29291 - petrochenkov:privacy, r=alexcrichton | bors | -2/+2 |
| 2015-11-01 | Add comment for stability.rs | Vadim Petrochenkov | -0/+1 |
| 2015-10-31 | Remove PatWildMulti | Vadim Petrochenkov | -5/+0 |
| 2015-10-25 | Tweak stability to not require annotations on impl items and unnamed fields | Vadim Petrochenkov | -2/+2 |
| 2015-10-16 | Auto merge of #29014 - petrochenkov:stability, r=brson | bors | -18/+30 |
| 2015-10-13 | Merge VariantData and VariantData_ | Vadim Petrochenkov | -2/+2 |
| 2015-10-13 | Merge struct fields and struct kind | Vadim Petrochenkov | -1/+1 |
| 2015-10-13 | Dict -> Struct, StructDef -> VariantData, def -> data | Vadim Petrochenkov | -2/+2 |
| 2015-10-13 | Remove now redundant NodeId from Variant | Vadim Petrochenkov | -3/+3 |
| 2015-10-13 | Decouple structure kinds from NodeIds | Vadim Petrochenkov | -3/+3 |
| 2015-10-13 | Refactor attr::Stability | Vadim Petrochenkov | -18/+30 |
| 2015-10-09 | Fix stability | Nick Cameron | -3/+28 |