| Age | Commit message (Expand) | Author | Lines |
| 2016-09-15 | Auto merge of #36393 - petrochenkov:ancient, r=eddyb | bors | -21/+13 |
| 2016-09-14 | Auto merge of #36293 - liigo:docblock-short, r=steveklabnik | bors | -10/+10 |
| 2016-09-14 | Auto merge of #36472 - GuillaumeGomez:rollup, r=GuillaumeGomez | bors | -20/+17 |
| 2016-09-14 | Rollup merge of #36334 - GuillaumeGomez:run_but, r=steveklabnik | Guillaume Gomez | -20/+17 |
| 2016-09-14 | Auto merge of #35667 - ollie27:rustdoc_opaque_structs, r=steveklabnik | bors | -6/+15 |
| 2016-09-13 | Remove some ancient code providing special support for newtypes | Vadim Petrochenkov | -21/+13 |
| 2016-09-10 | Rollup merge of #36045 - ollie27:rustdoc_titles3, r=steveklabnik | Guillaume Gomez | -3/+15 |
| 2016-09-09 | rustdoc: more docblock-short styles | Liigo | -5/+5 |
| 2016-09-09 | rustdoc: don't collapse `docblock-short` | Liigo | -5/+5 |
| 2016-09-09 | rustdoc: Don't add extra newlines for fully opaque structs | Oliver Middleton | -6/+15 |
| 2016-09-08 | Refactor `TyStruct`/`TyEnum`/`TyUnion` into `TyAdt` | Vadim Petrochenkov | -9/+7 |
| 2016-09-08 | Set run button transparent instead of invisible | Guillaume Gomez | -20/+17 |
| 2016-09-07 | Auto merge of #36266 - Sawyer47:issue-35169, r=alexcrichton | bors | -27/+69 |
| 2016-09-05 | Auto merge of #36078 - ollie27:rustdoc_search_assocconst, r=alexcrichton | bors | -11/+10 |
| 2016-09-05 | rustdoc: Filter more incorrect methods inherited through Deref | Piotr Jawniak | -27/+69 |
| 2016-09-04 | Auto merge of #36240 - leeopop:master, r=jseyfried | bors | -2/+2 |
| 2016-09-04 | Replace `_, _` with `..` | Vadim Petrochenkov | -7/+8 |
| 2016-09-04 | Allow CompilerControllers to access rustc_plugin::registry::Registry structure. | Keunhong Lee | -2/+2 |
| 2016-09-03 | Fix rebase + address comments | Vadim Petrochenkov | -5/+4 |
| 2016-09-03 | Support unions in rustdoc | Vadim Petrochenkov | -8/+184 |
| 2016-09-03 | Add union types | Vadim Petrochenkov | -0/+1 |
| 2016-09-03 | Add unions to HIR | Vadim Petrochenkov | -0/+2 |
| 2016-09-01 | Auto merge of #34982 - arielb1:bad-tuples-and-objects, r=nikomatsakis | bors | -1/+0 |
| 2016-09-01 | turn the RFC1592 warnings into hard errors | Ariel Ben-Yehuda | -1/+0 |
| 2016-08-31 | Auto merge of #35718 - michaelwoerister:incr-comp-dir-locking, r=alexcrichton | bors | -239/+4 |
| 2016-08-30 | Auto merge of #36066 - jseyfried:rollup, r=Manishearth | bors | -67/+27 |
| 2016-08-29 | Fix rustbuild | Michael Woerister | -0/+1 |
| 2016-08-29 | Add some features to flock. | Michael Woerister | -1/+1 |
| 2016-08-29 | Move `flock.rs` from librustdoc to librustc_data_structures. | Michael Woerister | -239/+3 |
| 2016-08-29 | rustdoc: Fix associated consts in search results | Oliver Middleton | -11/+10 |
| 2016-08-28 | Rollup merge of #35917 - jseyfried:remove_attr_ext_traits, r=nrc | Jeffrey Seyfried | -61/+1 |
| 2016-08-28 | Rollup merge of #35850 - SergioBenitez:master, r=nrc | Jeffrey Seyfried | -19/+46 |
| 2016-08-28 | Rollup merge of #35618 - jseyfried:ast_view_path_refactor, r=eddyb | Jeffrey Seyfried | -13/+6 |
| 2016-08-27 | rustdoc: Add missing item types to page titles | Oliver Middleton | -3/+15 |
| 2016-08-27 | Use deterministic `FnvHash{Map,Set}` in rustdoc | Jonas Schievink | -52/+53 |
| 2016-08-27 | rustc: use Vec<Kind> in Substs, where Kind is a &TyS | &Region tagged pointer. | Eduard Burtescu | -2/+2 |
| 2016-08-27 | rustc: pass ty::Region behind an interned 'tcx reference. | Eduard Burtescu | -3/+3 |
| 2016-08-27 | rustc: use accessors for Substs::{types,regions}. | Eduard Burtescu | -7/+6 |
| 2016-08-25 | Refactor away `AttrMetaMethods`. | Jeffrey Seyfried | -60/+1 |
| 2016-08-25 | Refactor away `AttributeMethods`. | Jeffrey Seyfried | -1/+1 |
| 2016-08-25 | Refactor away `AttrNestedMetaItemMethods`. | Jeffrey Seyfried | -4/+3 |
| 2016-08-25 | Implement RFC#1559: allow all literals in attributes. | Sergio Benitez | -19/+46 |
| 2016-08-24 | Implement `From<ast::FloatTy>` for `PrimitiveType`. | Corey Farwell | -4/+11 |
| 2016-08-24 | Implement `From<ast::UintTy>` for `PrimitiveType`. | Corey Farwell | -10/+14 |
| 2016-08-24 | Implement `From<ast::IntTy>` for `PrimitiveType`. | Corey Farwell | -10/+13 |
| 2016-08-24 | Remove unnecessary 'Primitive' prefix on `PrimitiveType` enum variants. | Corey Farwell | -17/+17 |
| 2016-08-24 | Stop reexporting `PrimitiveType` enum in librustdoc. | Corey Farwell | -105/+105 |
| 2016-08-24 | Migrate ItemType::from_type_kind to convert::From. | Corey Farwell | -3/+5 |
| 2016-08-24 | Migrate ItemType::from_item to convert::From. | Corey Farwell | -13/+15 |
| 2016-08-24 | Migrate Context::maybe_ignore_item method to standalone function. | Corey Farwell | -14/+14 |