| Age | Commit message (Expand) | Author | Lines |
| 2014-03-06 | Allow mutable slices in statics. | xales | -0/+3 |
| 2014-03-06 | fix typos with with repeated words, just like this sentence. | Kang Seonghoon | -1/+1 |
| 2014-03-05 | Allow overloading explicit dereferences. | Eduard Burtescu | -2/+5 |
| 2014-03-02 | Make visible types public in rustc | Steven Fackler | -1/+1 |
| 2014-03-01 | librustc: Fix errors arising from the automated `~[T]` conversion | Patrick Walton | -2/+2 |
| 2014-02-27 | Forbid moves out of static items Closes #10577 | Flavio Percoco | -14/+1 |
| 2014-02-26 | Replace callee_id with information stored in method_map. | Eduard Burtescu | -26/+13 |
| 2014-02-26 | Rename a few typeck method-related structures to UpperCamelCase. | Eduard Burtescu | -4/+4 |
| 2014-02-24 | Match binding is assignment | Edward Wang | -10/+13 |
| 2014-02-24 | Update rustc/syntax docs now that rustdoc lexes all non-`notrust` code blocks. | Huon Wilson | -179/+271 |
| 2014-02-24 | Transition to new `Hash`, removing IterBytes and std::to_bytes. | Huon Wilson | -3/+3 |
| 2014-02-23 | Move std::{trie, hashmap} to libcollections | Alex Crichton | -2/+2 |
| 2014-02-22 | Warn about unnecessary parentheses upon assignment | Eduard Bopp | -3/+2 |
| 2014-02-21 | Changed NonCamelCaseTypes lint to warn by default | mr.Shu | -1/+2 |
| 2014-02-14 | Removed the obsolete ast::CallSugar (previously used by `do`). | Eduard Burtescu | -2/+2 |
| 2014-02-14 | Refactored ast_map and friends, mainly to have Paths without storing them. | Eduard Burtescu | -19/+9 |
| 2014-02-13 | Replace `crate` usage with `krate` | Flavio Percoco | -2/+2 |
| 2014-02-11 | borrowck -- treak borrows from closures like other borrows | Niko Matsakis | -479/+634 |
| 2014-02-08 | Make &mut borrows restrict aliasing | Niko Matsakis | -103/+130 |
| 2014-02-08 | Remove unused ConstMutability | Niko Matsakis | -11/+1 |
| 2014-02-08 | Fixed error starting with uppercase | mr.Shu | -6/+6 |
| 2014-02-07 | Removed @self and @Trait. | Eduard Burtescu | -1/+1 |
| 2014-02-02 | rustc: update docs & propagate @[]/@str removal more. | Huon Wilson | -10/+0 |
| 2014-02-02 | rustc: remove use of @[]. | Huon Wilson | -3/+2 |
| 2014-02-02 | librustc: Remove uses of `interner_get` in librustc | Patrick Walton | -1/+2 |
| 2014-02-02 | librustc: Remove uses of `token::ident_to_str()` from librustc | Patrick Walton | -1/+2 |
| 2014-01-27 | Demote self to an (almost) regular argument and remove the env param. | Eduard Burtescu | -30/+22 |
| 2014-01-26 | Removed all instances of XXX in preparation for relaxing of FIXME rule | Salem Talha | -4/+4 |
| 2014-01-25 | Uppercase numeric constants | Chris Wong | -3/+3 |
| 2014-01-23 | auto merge of #11718 : ktt3ja/rust/borrowck-error-msg, r=brson | bors | -14/+31 |
| 2014-01-23 | Make some borrow checker errors more user friendly | Kiet Tran | -14/+31 |
| 2014-01-21 | [std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behavior | Simon Sapin | -1/+1 |
| 2014-01-21 | [std::vec] Rename .last_opt() to .last(), drop the old .last() behavior | Simon Sapin | -1/+1 |
| 2014-01-20 | Fix documentation typos | Flavio Percoco | -1/+1 |
| 2014-01-19 | syntax: convert ast_map to use a SmallIntMap. | Huon Wilson | -9/+6 |
| 2014-01-17 | Link lifetimes in `let` patterns just as we do for `match` patterns | Niko Matsakis | -0/+3 |
| 2014-01-15 | Issue #3511 - Rationalize temporary lifetimes. | Niko Matsakis | -20/+10 |
| 2014-01-12 | Removed remnants of `@mut` and `~mut` from comments and the type system. | Eduard Burtescu | -46/+9 |
| 2014-01-11 | Removed obsolete 'e' prefix on ty_evec and ty_estr. | Eduard Burtescu | -1/+1 |
| 2014-01-11 | auto merge of #11465 : pcwalton/rust/borrow-check-bug, r=pcwalton | bors | -14/+35 |
| 2014-01-10 | librustc: Check restrictions on all subcomponents of a path when moving | Patrick Walton | -14/+35 |
| 2014-01-11 | Remove re-exports of std::io::stdio::{print, println} in the prelude. | Brendan Zabarauskas | -1/+1 |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -38/+31 |
| 2014-01-08 | auto merge of #11370 : alexcrichton/rust/issue-10465, r=pwalton | bors | -0/+1 |
| 2014-01-07 | Fix remaining cases of leaking imports | Alex Crichton | -0/+1 |
| 2014-01-07 | 'borrowed pointer' -> 'reference' | Brian Anderson | -13/+13 |
| 2014-01-06 | Disowned the Visitor. | Eduard Burtescu | -101/+103 |
| 2014-01-04 | Don't allow newtype structs to be dereferenced. #6246 | Brian Anderson | -11/+23 |
| 2014-01-03 | librustc: Remove `@mut` support from the typechecker and borrow checker | Patrick Walton | -151/+25 |
| 2014-01-03 | librustc: De-`@mut` the AST map | Patrick Walton | -1/+2 |