| Age | Commit message (Expand) | Author | Lines |
| 2013-06-29 | Great renaming: propagate throughout the rest of the codebase | Corey Richardson | -5/+4 |
| 2013-06-28 | librustc: Rewrite reachability and forbid duplicate methods in type implement... | Patrick Walton | -1/+0 |
| 2013-06-28 | librustc: Change Const to Freeze in the compiler | Patrick Walton | -1/+1 |
| 2013-06-28 | librustc: Rename Owned to Send in the compiler | Patrick Walton | -1/+1 |
| 2013-06-24 | Merge remote-tracking branch 'cmr/various-cleanup' into incoming | Brian Anderson | -1/+0 |
| 2013-06-23 | Parse and typecheck (not kindcheck) bounds on trait paths. | Ben Blum | -1/+4 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -4/+4 |
| 2013-06-21 | Remove `ast::pure_fn` and all concept of `pure` from the compiler | Corey Richardson | -1/+0 |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -8/+8 |
| 2013-05-30 | Add 'Sized' builtin kind; doesn't do anything yet | Ben Blum | -0/+1 |
| 2013-05-30 | Remove a bunch of unnecessary allocations and copies | Björn Steinbrink | -2/+1 |
| 2013-05-28 | Remove unnecessary allocations flagged by lint | Seo Sanghyeon | -2/+2 |
| 2013-05-22 | libextra: Rename the actual metadata names of libcore to libstd and libstd to... | Patrick Walton | -0/+2 |
| 2013-05-20 | Remove all unnecessary allocations (as flagged by lint) | Alex Crichton | -5/+5 |
| 2013-05-16 | Add BuiltinBounds to closure type: parse and handle subtyping, | Niko Matsakis | -1/+4 |
| 2013-05-14 | rustc: Remove ty::arg | Erick Tryzelaar | -6/+2 |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -1/+1 |
| 2013-05-09 | Refactor representation of bounds to separate out BuiltinBounds into | Niko Matsakis | -11/+13 |
| 2013-05-09 | librustc: rename vec::each(var) to var.each | Youngmin Yoo | -2/+1 |
| 2013-05-05 | Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze | Niko Matsakis | -10/+0 |
| 2013-05-02 | Remove 'Local Variable' comments | Brendan Zabarauskas | -10/+0 |
| 2013-04-30 | new borrow checker (mass squash) | Niko Matsakis | -23/+25 |
| 2013-04-29 | librustc: Remove the concept of modes from the compiler. | Patrick Walton | -8/+0 |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -3/+0 |
| 2013-04-19 | rustc: de-mode + fallout from libsyntax changes | Alex Crichton | -10/+10 |
| 2013-04-19 | librustc: Remove def_ids from types. | Patrick Walton | -13/+0 |
| 2013-04-17 | Allow casting to mutable trait objects. | Josh Matthews | -3/+10 |
| 2013-04-10 | Reason about nested free variables that appear in a function | Niko Matsakis | -3/+3 |
| 2013-04-09 | Cleanup substitutions and treatment of generics around traits in a number of ... | Niko Matsakis | -1/+7 |
| 2013-04-05 | Refactor so that references to traits are not represented using a type with a | Niko Matsakis | -3/+8 |
| 2013-04-05 | Rather than storing a list of ty::method per trait, store one ty::method | Niko Matsakis | -1/+1 |
| 2013-04-03 | rename Linear{Map,Set} => Hash{Map,Set} | Daniel Micay | -2/+2 |
| 2013-04-03 | hashmap: rm linear namespace | Daniel Micay | -1/+1 |
| 2013-03-29 | Add AbiSet and integrate it into the AST. | Niko Matsakis | -4/+8 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -2/+1 |
| 2013-03-26 | rustc: Purge of HashMap, fixing segfaulting cases | Alex Crichton | -1/+1 |
| 2013-03-26 | rustc: Remove uses of oldmap::HashMap | Alex Crichton | -2/+2 |
| 2013-03-20 | Refactor the self-info so that the def-id is carried in ty_self() | Niko Matsakis | -1/+3 |
| 2013-03-13 | librustc: Don't accept `as Trait` anymore; fix all occurrences of it. | Patrick Walton | -20/+20 |
| 2013-03-13 | librustc: Separate out trait storage from evec/estr storage | Patrick Walton | -2/+14 |
| 2013-03-13 | Remove `++` mode from the compiler (it is parsed as `+` mode) | Niko Matsakis | -1/+0 |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -1/+1 |
| 2013-03-07 | librustc: Remove structural record types from the compiler | Patrick Walton | -9/+0 |
| 2013-03-02 | librustc: Remove `fn@`, `fn~`, and `fn&` from librustc. rs=defun | Patrick Walton | -2/+2 |
| 2013-02-26 | Removed deprecated `str()` functions in int-template.rs and uint-template.rs | Marvin Löbel | -1/+1 |
| 2013-02-20 | librustc: Get rid of structural records save for front/test.rs. | Luqman Aden | -2/+6 |
| 2013-02-19 | librustc: change driver::session::Session::str_of to return @~str | Erick Tryzelaar | -2/+2 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -1/+1 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -18/+36 |
| 2013-02-05 | oldmap: use &K instead of K in find and get | Patrick Walton | -2/+2 |