| Age | Commit message (Expand) | Author | Lines |
| 2014-07-08 | std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`. | Richo Healey | -17/+17 |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -1/+1 |
| 2014-06-18 | Ensure dataflow of a proc never looks at blocks from closed-over context. | Felix S. Klock II | -24/+14 |
| 2014-06-18 | Revise dataflow to do a cfg-driven walk. | Felix S. Klock II | -576/+296 |
| 2014-06-13 | Fix all violations of stronger guarantees for mutable borrows | Cameron Zwarich | -1/+2 |
| 2014-06-11 | rustc: Remove ~[T] from the language | Alex Crichton | -13/+14 |
| 2014-06-11 | rustc: Move the AST from @T to Gc<T> | Alex Crichton | -58/+58 |
| 2014-06-06 | Move Def out of syntax crate, where it does not belong | Niko Matsakis | -3/+4 |
| 2014-05-28 | std: Remove format_strbuf!() | Alex Crichton | -6/+3 |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -2/+2 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -5/+5 |
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -8/+13 |
| 2014-05-12 | librustc: Remove all uses of `~str` from librustc. | Patrick Walton | -7/+10 |
| 2014-05-08 | libsyntax: Remove uses of `~str` from libsyntax, and fix fallout | Patrick Walton | -2/+2 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -1/+1 |
| 2014-05-02 | Replace most ~exprs with 'box'. #11779 | Brian Anderson | -1/+1 |
| 2014-04-22 | rustc: move the method and vtable maps into ty::ctxt. | Eduard Burtescu | -4/+1 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -2/+2 |
| 2014-04-18 | Update the rest of the compiler with ~[T] changes | Alex Crichton | -4/+3 |
| 2014-04-10 | libstd: Implement `StrBuf`, a new string buffer type like `Vec`, and | Patrick Walton | -3/+4 |
| 2014-04-04 | syntax: remove obsolete mutability from ExprVec and ExprRepeat. | Eduard Burtescu | -2/+2 |
| 2014-04-02 | middle: dataflow: remove dead code | Corey Richardson | -25/+0 |
| 2014-03-31 | rustc: Switch field privacy as necessary | Alex Crichton | -9/+10 |
| 2014-03-22 | rustc: Fix fallout of removing get() | Alex Crichton | -3/+2 |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -1/+0 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -1/+1 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -2/+2 |
| 2014-03-18 | syntax: Don't parameterize the the pretty printer | Alex Crichton | -1/+1 |
| 2014-03-17 | Refactor pprust a bit. | Eduard Burtescu | -14/+14 |
| 2014-03-17 | De-@ ty::ctxt usage. | Eduard Burtescu | -13/+13 |
| 2014-03-15 | rustc: Remove compiler support for __log_level() | Alex Crichton | -1/+0 |
| 2014-03-13 | Implement automatic overloaded dereference. | Eduard Burtescu | -2/+2 |
| 2014-03-08 | librustc: Fix up fallout from the automatic conversion. | Felix S. Klock II | -11/+17 |
| 2014-03-08 | librustc: Automatically change uses of `~[T]` to `Vec<T>` in rustc. | Patrick Walton | -20/+18 |
| 2014-03-06 | rustc: Move to FNV hashing for node/def ids | Alex Crichton | -3/+3 |
| 2014-03-03 | syntax: make match arms store the expr directly. | Huon Wilson | -2/+1 |
| 2014-03-01 | librustc: Fix errors arising from the automated `~[T]` conversion | Patrick Walton | -5/+7 |
| 2014-02-26 | Replace callee_id with information stored in method_map. | Eduard Burtescu | -16/+15 |
| 2014-02-26 | Rename a few typeck method-related structures to UpperCamelCase. | Eduard Burtescu | -2/+2 |
| 2014-02-23 | Make break and continue hygienic | Edward Wang | -1/+1 |
| 2014-02-23 | Move std::{trie, hashmap} to libcollections | Alex Crichton | -1/+1 |
| 2014-02-22 | Warn about unnecessary parentheses upon assignment | Eduard Bopp | -1/+1 |
| 2014-02-20 | Mass rename if_ok! to try! | Alex Crichton | -6/+6 |
| 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 | -2/+1 |
| 2014-02-11 | dataflow -- do not consider the interprocedural case | Niko Matsakis | -120/+23 |
| 2014-02-08 | Fixed error starting with uppercase | mr.Shu | -2/+2 |
| 2014-02-07 | Removed @self and @Trait. | Eduard Burtescu | -4/+3 |
| 2014-02-03 | rustc: Remove io_error usage | Alex Crichton | -9/+12 |
| 2014-01-30 | Remove Times trait | Brendan Zabarauskas | -2/+2 |