| Age | Commit message (Expand) | Author | Lines |
| 2014-12-15 | Remove internal uses of `marker::NoCopy` | Jorge Aparicio | -6/+3 |
| 2014-12-14 | Rename FnStyle trait to Unsafety. | Niko Matsakis | -12/+12 |
| 2014-12-14 | Remove `proc` types/expressions from the parser, compiler, and | Niko Matsakis | -1/+8 |
| 2014-12-13 | librustc: use unboxed closures | Jorge Aparicio | -18/+28 |
| 2014-12-13 | librustc: fix fallout | Jorge Aparicio | -1/+3 |
| 2014-12-12 | Switch to using predicates to drive checking. Correct various tests -- | Niko Matsakis | -5/+5 |
| 2014-12-08 | librustc: Make `Copy` opt-in. | Niko Matsakis | -0/+5 |
| 2014-12-06 | librustc: remove unnecessary `as_slice()` calls | Jorge Aparicio | -1/+1 |
| 2014-12-04 | Remove dependence on typeck from ppaux. | Niko Matsakis | -19/+0 |
| 2014-12-04 | Move various data structures out of typeck and into ty. | Niko Matsakis | -10/+8 |
| 2014-11-26 | rollup merge of #19329: steveklabnik/doc_style_cleanup2 | Alex Crichton | -44/+25 |
| 2014-11-26 | /*! -> //! | Steve Klabnik | -44/+25 |
| 2014-11-25 | /** -> /// | Steve Klabnik | -4/+2 |
| 2014-11-23 | std: Add a new top-level thread_local module | Alex Crichton | -5/+8 |
| 2014-11-20 | auto merge of #18750 : nikomatsakis/rust/issue-18333-skolemize-open-existenti... | bors | -1/+2 |
| 2014-11-20 | Require that objects can only be made from Sized types. Fixes #18333. | Niko Matsakis | -1/+2 |
| 2014-11-20 | Refactored new CodeExtent type for improved abstraction. | Felix S. Klock II | -6/+6 |
| 2014-11-19 | Refactor QPath to take an ast::TraitRef | Niko Matsakis | -0/+4 |
| 2014-11-19 | rustc: fix fallout of adding the `'tcx` lifetime to `Ty`. | Eduard Burtescu | -154/+155 |
| 2014-11-19 | rustc: middle: rename `ty::t` to `Ty` and use it unqualified everywhere. | Eduard Burtescu | -5/+5 |
| 2014-11-18 | Allow impl's to have late-bound regions. Introduces another level of | Niko Matsakis | -2/+45 |
| 2014-11-18 | Switch the code to use De Bruijn indices rather than binder-ids. | Niko Matsakis | -7/+11 |
| 2014-11-18 | auto merge of #19050 : japaric/rust/moar-dst, r=aturon | bors | -5/+5 |
| 2014-11-17 | librustc: DSTify `ClassList`, `LlvmRepr` and `Repr` | Jorge Aparicio | -5/+5 |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -0/+1 |
| 2014-11-16 | Try to remove ty_nil, some kind of error in exhaustiveness checking | Niko Matsakis | -2/+1 |
| 2014-11-13 | std: Fix the return value of Duration::span | Alex Crichton | -1/+1 |
| 2014-11-12 | time: Deprecate the library in the distribution | Alex Crichton | -7/+11 |
| 2014-11-10 | Use FnvHashMap instead of HashMap in rustc | Ariel Ben-Yehuda | -12/+2 |
| 2014-11-07 | Make TyTrait embed a `TraitRef`, so that when we extend TraitRef, it naturall... | Niko Matsakis | -4/+4 |
| 2014-11-06 | Fallout from collection conventions | Alexis Beingessner | -5/+5 |
| 2014-11-05 | Better debug printouts | Niko Matsakis | -9/+5 |
| 2014-11-05 | Implement new operator dispatch semantics. | Niko Matsakis | -0/+7 |
| 2014-11-03 | rollup merge of #18506 : nikomatsakis/assoc-type-bounds | Alex Crichton | -20/+46 |
| 2014-11-03 | Move associated types into the Assoc space and add in the builtin bounds | Niko Matsakis | -16/+41 |
| 2014-11-03 | Add a 4th space for associated types defined in a trait (currently unused) | Niko Matsakis | -4/+5 |
| 2014-11-02 | Convert some notes to help messages | P1start | -1/+3 |
| 2014-11-01 | collections: Remove all collections traits | Alex Crichton | -4/+4 |
| 2014-10-31 | auto merge of #18440 : japaric/rust/hash, r=alexcrichton | bors | -1/+1 |
| 2014-10-31 | DSTify Hash | Jorge Aparicio | -1/+1 |
| 2014-10-31 | auto merge of #18264 : jakub-/rust/var-ids-in-error-messages, r=nikomatsakis | bors | -84/+100 |
| 2014-10-30 | Use the `_` representation for integral variables as well | Jakub Bukaj | -3/+2 |
| 2014-10-30 | collections: Enable IndexMut for some collections | Alex Crichton | -4/+4 |
| 2014-10-29 | Always drop var IDs from type variables modulo -Z verbose, per PR discussion | Jakub Bukaj | -59/+37 |
| 2014-10-29 | Address review comments | Jakub Bukaj | -3/+3 |
| 2014-10-29 | Improve the readability of diagnostics that involve unresolved type variables | Jakub Bukaj | -95/+134 |
| 2014-10-29 | Rename fail! to panic! | Steve Klabnik | -1/+1 |
| 2014-10-28 | Address review comments | Jakub Bukaj | -6/+4 |
| 2014-10-28 | Remove ty_bot from the type system | Jakub Bukaj | -8/+23 |
| 2014-10-27 | Fix monomorphization of unboxed closures | Brian Koropoff | -1/+6 |