| Age | Commit message (Expand) | Author | Lines |
| 2017-09-12 | rustc: Make `CrateStore` private to `TyCtxt` | Alex Crichton | -4/+6 |
| 2017-09-11 | rustc: Remove HirId from queries | Alex Crichton | -4/+4 |
| 2017-09-05 | rustc: Flag some CrateStore methods as "untracked" | Alex Crichton | -3/+4 |
| 2017-09-05 | rustc: Move original_crate_name to a query | Alex Crichton | -1/+1 |
| 2017-08-29 | rustc: Make the `export_map` of TyCtxt private | Alex Crichton | -2/+3 |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -25/+25 |
| 2017-06-12 | rustdoc: Fix missing enum variant reexports | Oliver Middleton | -14/+10 |
| 2017-05-25 | Refactor out `ast::MacroDef`. | Jeffrey Seyfried | -3/+2 |
| 2017-04-24 | support `default impl` for specialization | Gianni Ciccarelli | -1/+7 |
| 2017-04-24 | support `default impl` for specialization | Gianni Ciccarelli | -1/+2 |
| 2017-04-12 | First attempt at global_asm! macro | A.J. Gardner | -0/+1 |
| 2017-03-28 | Rustdoc: memoize `pub use`-reexported macros so they don't appear twice in docs | Austin Bonander | -2/+20 |
| 2017-03-23 | move `export_map` into the tcx | Niko Matsakis | -1/+1 |
| 2017-03-14 | Refactor `Attribute` to use `Path` and `TokenStream` instead of `MetaItem`. | Jeffrey Seyfried | -1/+1 |
| 2017-03-10 | Avoid using `Mark` and `Invocation` for macro defs. | Jeffrey Seyfried | -1/+1 |
| 2017-03-10 | Refactor out `ast::ItemKind::MacroDef`. | Jeffrey Seyfried | -4/+8 |
| 2017-03-03 | Integrate `TokenStream`. | Jeffrey Seyfried | -2/+4 |
| 2017-02-28 | Add `syntax::ext::tt::quoted::{TokenTree, ..}` and remove `tokenstream::Token... | Jeffrey Seyfried | -2/+2 |
| 2017-02-23 | Move MacroKind into Def::Macro | Josh Driver | -1/+1 |
| 2017-01-26 | rustc: rename TyCtxt's `map` field to `hir`. | Eduard-Mihai Burtescu | -12/+12 |
| 2016-12-28 | rustc: move function arguments into hir::Body. | Eduard-Mihai Burtescu | -3/+5 |
| 2016-12-28 | rustc: separate TraitItem from their parent Item, just like ImplItem. | Eduard-Mihai Burtescu | -2/+5 |
| 2016-12-20 | Rollup merge of #38418 - michaelwoerister:def_path_cleanup, r=eddyb | Alex Crichton | -4/+4 |
| 2016-12-19 | Don't try get local DefId of imported macro in rustdoc. | Michael Woerister | -4/+4 |
| 2016-12-18 | Remove `MacroDef`'s fields `imported_from` and `allow_internal_unstable`, | Jeffrey Seyfried | -2/+3 |
| 2016-11-28 | rustc: embed path resolutions into the HIR instead of keeping DefMap. | Eduard-Mihai Burtescu | -5/+17 |
| 2016-11-28 | rustc: desugar `use a::{b,c};` into `use a::b; use a::c;` in HIR. | Eduard-Mihai Burtescu | -46/+13 |
| 2016-11-24 | rustdoc: we can now assume DocContext always has a TyCtxt. | Eduard-Mihai Burtescu | -19/+11 |
| 2016-11-24 | rustdoc: use libsyntax ast::Attribute instead of "cleaning" them. | Eduard-Mihai Burtescu | -7/+6 |
| 2016-11-17 | when creating an AssociatedItem, read data from impl, not impl item | Niko Matsakis | -2/+2 |
| 2016-11-16 | fallout from separating impl-items from impls | Niko Matsakis | -1/+4 |
| 2016-11-14 | rustdoc: Fix some local inlining issues | Oliver Middleton | -34/+54 |
| 2016-11-10 | Support `#[macro_reexport]`ing custom derives. | Jeffrey Seyfried | -1/+7 |
| 2016-11-10 | Fix fallout in `librustdoc`. | Jeffrey Seyfried | -2/+25 |
| 2016-11-08 | Replace FnvHasher use with FxHasher. | Nicholas Nethercote | -3/+3 |
| 2016-10-02 | Cleanup `return` statements. | Corey Farwell | -1/+1 |
| 2016-09-20 | rustc_metadata: go only through rustc_serialize in astencode. | Eduard Burtescu | -1/+2 |
| 2016-09-03 | Support unions in rustdoc | Vadim Petrochenkov | -2/+22 |
| 2016-09-03 | Add unions to HIR | Vadim Petrochenkov | -0/+2 |
| 2016-08-30 | Auto merge of #36066 - jseyfried:rollup, r=Manishearth | bors | -4/+3 |
| 2016-08-28 | Rollup merge of #35917 - jseyfried:remove_attr_ext_traits, r=nrc | Jeffrey Seyfried | -1/+0 |
| 2016-08-28 | Rollup merge of #35850 - SergioBenitez:master, r=nrc | Jeffrey Seyfried | -3/+3 |
| 2016-08-27 | Use deterministic `FnvHash{Map,Set}` in rustdoc | Jonas Schievink | -3/+3 |
| 2016-08-25 | Refactor away `AttrMetaMethods`. | Jeffrey Seyfried | -1/+0 |
| 2016-08-25 | Refactor away `AttrNestedMetaItemMethods`. | Jeffrey Seyfried | -1/+1 |
| 2016-08-25 | Implement RFC#1559: allow all literals in attributes. | Sergio Benitez | -3/+3 |
| 2016-08-21 | Fix fallout in `rustdoc`. | Jeffrey Seyfried | -1/+1 |
| 2016-06-28 | Rollup merge of #34479 - ollie27:rustdoc_renamed_reexport_list, r=GuillaumeGomez | Guillaume Gomez | -2/+2 |
| 2016-06-26 | rustdoc: Fix inlined renamed reexports in import lists | Oliver Middleton | -2/+2 |
| 2016-06-23 | Move errors from libsyntax to its own crate | Jonathan Turner | -1/+1 |