| Age | Commit message (Expand) | Author | Lines |
| 2015-06-19 | rustc: remove Repr and UserString. | Eduard Burtescu | -39/+37 |
| 2015-06-19 | rustc: replace Repr/UserString impls with Debug/Display ones. | Eduard Burtescu | -53/+44 |
| 2015-06-19 | Clean up unused argument/variable warnings. | Eduard Burtescu | -1/+0 |
| 2015-06-19 | rustc: use the TLS type context in Repr and UserString. | Eduard Burtescu | -50/+50 |
| 2015-06-16 | Remove unused type InteriorSafety. | Eli Friedman | -17/+4 |
| 2015-06-12 | Split TyArray into TyArray and TySlice. | Eli Friedman | -5/+5 |
| 2015-06-12 | Cleanup: rename middle::ty::sty and its variants. | Eli Friedman | -16/+16 |
| 2015-06-10 | Auto merge of #26182 - Manishearth:rollup, r=Manishearth | bors | -2/+2 |
| 2015-06-10 | Rollup merge of #26146 - steveklabnik:remove_unsafe_pointer, r=Gankro | Manish Goregaokar | -1/+1 |
| 2015-06-10 | syntax: move ast_map to librustc. | Eduard Burtescu | -1/+1 |
| 2015-06-09 | Exise 'unsafe pointer' in favor of 'raw pointer' | Steve Klabnik | -1/+1 |
| 2015-06-09 | Exise 'owned pointer' from the codebase | Steve Klabnik | -1/+1 |
| 2015-05-05 | Use `empty()` instead of a special const | Tamir Duberstein | -3/+4 |
| 2015-04-29 | Fallout | Tamir Duberstein | -4/+4 |
| 2015-04-23 | Get associated consts working in match patterns. | Sean Patrick Santos | -0/+4 |
| 2015-04-23 | Structural changes for associated constants | Sean Patrick Santos | -2/+2 |
| 2015-04-14 | eddyb's refactoring of coercions/adjustments | Eduard Burtescu | -27/+11 |
| 2015-04-08 | Modify the ExprUseVisitor to walk each part of an AutoRef, and in | Niko Matsakis | -10/+14 |
| 2015-04-01 | Fallout out rustc | Niko Matsakis | -1/+4 |
| 2015-03-31 | Rollup merge of #23859 - pnkfelix:fsk-lesser-box, r=nikomatsakis | Manish Goregaokar | -51/+118 |
| 2015-03-30 | Address Issue 14270 by making `cmt::freely_aliasable` result more fine-grained. | Felix S. Klock II | -10/+31 |
| 2015-03-30 | mem_categorization.rs removed `pub` from method called only from this mod. | Felix S. Klock II | -2/+2 |
| 2015-03-30 | Mucho debug instrumentation. | Felix S. Klock II | -39/+85 |
| 2015-03-28 | Rollup merge of #23803 - richo:unused-braces, r=Manishearth | Manish Goregaokar | -1/+1 |
| 2015-03-28 | cleanup: Remove unused braces in use statements | Richo Healey | -1/+1 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -6/+6 |
| 2015-03-23 | Fallout in stdlib, rustdoc, rustc, etc. For most maps, converted uses of | Niko Matsakis | -1/+1 |
| 2015-03-17 | Move unsafety out of the subtyping relation and into coercion. | Niko Matsakis | -1/+2 |
| 2015-03-15 | Strip all leading/trailing newlines | Tamir Duberstein | -1/+0 |
| 2015-03-02 | Remove the synthetic "region bound" from closures and instead update how | Niko Matsakis | -1/+1 |
| 2015-02-24 | Implement `<T>::method` UFCS expression syntax. | Eduard Burtescu | -1/+1 |
| 2015-02-24 | rustc: combine partial_def_map and last_private_map into def_map. | Eduard Burtescu | -7/+6 |
| 2015-02-24 | rustc_resolve: remove the distinction between DefStaticMethod and DefMethod. | Eduard Burtescu | -1/+1 |
| 2015-02-24 | rustc: use partially resolved definitions to replace the `T::A` hack. | Eduard Burtescu | -1/+1 |
| 2015-02-24 | rustc_resolve: use the visitor model more, remove redundant repeated lookups. | Eduard Burtescu | -1/+1 |
| 2015-02-24 | Revert bogus rename from DefTrait to DefaultImpl. | Eduard Burtescu | -1/+1 |
| 2015-02-24 | Auto merge of #21689 - FlaPer87:oibit-send-and-friends, r=nikomatsakis | bors | -1/+1 |
| 2015-02-22 | Rename DefTrait to DefaultImpl | Flavio Percoco | -1/+1 |
| 2015-02-20 | Remove remaining uses of `[]`. This time I tried to use deref coercions where... | Niko Matsakis | -1/+1 |
| 2015-02-18 | Move `tcx` from `Typer` into `ClosureTyper` | Niko Matsakis | -1/+0 |
| 2015-02-18 | Replace `assert_no_late_bound_regions` with | Niko Matsakis | -5/+6 |
| 2015-02-16 | rustc: categorize rvalue borrows based on their const-qualification. | Eduard Burtescu | -9/+22 |
| 2015-02-11 | Added DestructionScope variant to CodeExtent, representing the area | Felix S. Klock II | -1/+4 |
| 2015-02-07 | Restrictions on moves out-from and into fixed-length arrays. | Felix S. Klock II | -21/+56 |
| 2015-02-06 | librustc has been updated | GuillaumeGomez | -1/+1 |
| 2015-02-03 | Remove the explicit closure kind syntax from the parser and AST; | Niko Matsakis | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -5/+5 |
| 2015-02-02 | Auto merge of #21647 - alfie:suffix-medium, r=alexcrichton | bors | -1/+1 |
| 2015-02-01 | Make `unboxed_closure_kind` return `Option` to allow for the possibility that... | Niko Matsakis | -2/+10 |
| 2015-02-01 | More deprecating of i/u suffixes in libraries | Alfie John | -1/+1 |