| Age | Commit message (Expand) | Author | Lines |
| 2015-01-07 | use slicing sugar | Jorge Aparicio | -9/+9 |
| 2015-01-06 | rollup merge of #20481: seanmonstar/fmt-show-string | Alex Crichton | -2/+2 |
| 2015-01-06 | rollup merge of #20609: cmr/mem | Alex Crichton | -2/+2 |
| 2015-01-06 | core: split into fmt::Show and fmt::String | Sean McArthur | -2/+2 |
| 2015-01-07 | Replace full slice notation with index calls | Nick Cameron | -8/+8 |
| 2015-01-06 | syntax/rustc: implement isize/usize | Corey Richardson | -2/+2 |
| 2015-01-05 | remove mk_closure | Jorge Aparicio | -3/+0 |
| 2015-01-05 | conv_did: convert to "unboxed" closure | Jorge Aparicio | -127/+254 |
| 2015-01-03 | sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs | Jorge Aparicio | -1/+1 |
| 2015-01-03 | sed -i -s 's/\bmod,/self,/g' **/*.rs | Jorge Aparicio | -1/+1 |
| 2015-01-02 | std: Stabilize the prelude module | Alex Crichton | -1/+0 |
| 2014-12-30 | Remove the def-id from type parameters. Having this def-id was bad for severa... | Niko Matsakis | -4/+4 |
| 2014-12-30 | Integrate projection bounds to `ExistentialBounds` but do not use them for an... | Niko Matsakis | -7/+15 |
| 2014-12-30 | Convert to use `Rc<TraitRef>` in object types (finally!). | Niko Matsakis | -7/+7 |
| 2014-12-30 | Implement associated type projection and normalization. | Niko Matsakis | -8/+29 |
| 2014-12-30 | Move the scalar types out of static data so that we can put `Rc` into sty. | Niko Matsakis | -31/+32 |
| 2014-12-29 | Intern Region in tcx. | Huon Wilson | -2/+3 |
| 2014-12-29 | Intern BareFnTys to make sty slightly smaller. | Huon Wilson | -2/+4 |
| 2014-12-29 | Switch Region information from uint to u32. | Huon Wilson | -6/+13 |
| 2014-12-29 | Store Substs in an arena in the tcx. | Huon Wilson | -6/+6 |
| 2014-12-22 | rollup merge of #19891: nikomatsakis/unique-fn-types-3 | Alex Crichton | -1/+5 |
| 2014-12-22 | Adjust metadata for new fields and enum variants. Yawn. | Niko Matsakis | -1/+5 |
| 2014-12-21 | Fallout of std::str stabilization | Alex Crichton | -6/+6 |
| 2014-12-19 | librustc: use `#[deriving(Copy)]` | Jorge Aparicio | -2/+1 |
| 2014-12-19 | Make all predicates higher-ranked, not just trait references. | Niko Matsakis | -8/+8 |
| 2014-12-19 | Centralize on using `Binder` to introduce new binding levels, rather than hav... | Niko Matsakis | -7/+7 |
| 2014-12-19 | Create distinct types for a PolyTraitRef (with bindings) and a normal TraitRef. | Niko Matsakis | -4/+6 |
| 2014-12-14 | Rename FnStyle trait to Unsafety. | Niko Matsakis | -8/+8 |
| 2014-12-13 | librustc: use unboxed closures | Jorge Aparicio | -7/+14 |
| 2014-12-12 | Switch to using predicates to drive checking. Correct various tests -- | Niko Matsakis | -1/+28 |
| 2014-12-08 | librustc: Make `Copy` opt-in. | Niko Matsakis | -0/+2 |
| 2014-11-20 | Refactored new CodeExtent type for improved abstraction. | Felix S. Klock II | -4/+15 |
| 2014-11-19 | rustc: fix fallout of adding the `'tcx` lifetime to `Ty`. | Eduard Burtescu | -33/+42 |
| 2014-11-19 | rustc: middle: rename `ty::t` to `Ty` and use it unqualified everywhere. | Eduard Burtescu | -4/+4 |
| 2014-11-19 | rustc: avoid `use`-ing `syntax::ast::*`. | Eduard Burtescu | -4/+3 |
| 2014-11-18 | Switch the code to use De Bruijn indices rather than binder-ids. | Niko Matsakis | -5/+2 |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -0/+2 |
| 2014-11-17 | auto merge of #19027 : nick29581/rust/coercions-4, r=alexcrichton | bors | -1/+1 |
| 2014-11-17 | Fix fallout from coercion removal | Nick Cameron | -1/+1 |
| 2014-11-17 | auto merge of #18914 : Gankro/rust/cloned, r=aturon | bors | -1/+1 |
| 2014-11-16 | fallout from deprecating find_copy and get_copy | Alexis Beingessner | -1/+1 |
| 2014-11-16 | Try to remove ty_nil, some kind of error in exhaustiveness checking | Niko Matsakis | -1/+0 |
| 2014-11-07 | Make TyTrait embed a `TraitRef`, so that when we extend TraitRef, it naturall... | Niko Matsakis | -3/+2 |
| 2014-11-06 | Fallout from collection conventions | Alexis Beingessner | -4/+4 |
| 2014-11-05 | auto merge of #18546 : bkoropoff/rust/unboxed-closures-cross-crate, r=nick29581 | bors | -1/+4 |
| 2014-11-04 | Separate string->integer implementation in strconv | Brendan Zabarauskas | -3/+2 |
| 2014-11-02 | Treat cross-crate unboxed closure def IDs consistently | Brian Koropoff | -1/+4 |
| 2014-10-29 | Rename fail! to panic! | Steve Klabnik | -14/+14 |
| 2014-10-28 | Remove ty_bot from the type system | Jakub Bukaj | -3/+8 |
| 2014-10-27 | Fix monomorphization of unboxed closures | Brian Koropoff | -2/+5 |