| Age | Commit message (Expand) | Author | Lines |
| 2014-06-24 | auto merge of #14952 : alexcrichton/rust/const-unsafe-pointers, r=brson | bors | -4/+17 |
| 2014-06-23 | libsyntax: Disallow struct literals after `if`, `while`, `match`, and | Patrick Walton | -14/+16 |
| 2014-06-22 | libsyntax: don't allow enum structs with no fields | Benjamin Herr | -0/+5 |
| 2014-06-21 | auto merge of #15062 : pcwalton/rust/trailing-plus, r=brson | bors | -0/+6 |
| 2014-06-20 | libsyntax: Stop parsing `+` with no bounds after it. | Patrick Walton | -0/+6 |
| 2014-06-20 | syntax: Parse GT tokens from `>=` and `>>=` | Alex Crichton | -1/+13 |
| 2014-06-18 | Handle CRLF properly in the lexer | Kevin Ballard | -23/+140 |
| 2014-06-18 | Don't require mutable StringReader to emit lexer errors | Kevin Ballard | -42/+52 |
| 2014-06-18 | Fix spans for doc comments | Kevin Ballard | -3/+3 |
| 2014-06-18 | auto merge of #14880 : SimonSapin/rust/byte-literals, r=alexcrichton | bors | -83/+213 |
| 2014-06-18 | Remove TraitStore from ty_trait | Nick Cameron | -2/+6 |
| 2014-06-18 | Fix some violations of stronger guarantees for mutable borrows. | Simon Sapin | -9/+17 |
| 2014-06-17 | Refactor backslash-escape parsing to share similar code. | Simon Sapin | -151/+69 |
| 2014-06-17 | Add br##"xx"## raw byte string literals. | Simon Sapin | -3/+61 |
| 2014-06-17 | Add a b"xx" byte string literal of type &'static [u8]. | Simon Sapin | -53/+125 |
| 2014-06-17 | Add a b'x' byte literal of type u8. | Simon Sapin | -4/+78 |
| 2014-06-16 | rustc: Improve span for error about using a method as a field. | Kevin Butler | -2/+3 |
| 2014-06-16 | rustc: Start accepting `*const T` | Alex Crichton | -4/+17 |
| 2014-06-15 | Register new snapshots | Alex Crichton | -44/+4 |
| 2014-06-14 | rustc: Obsolete the `@` syntax entirely | Alex Crichton | -4/+18 |
| 2014-06-13 | Fix all violations of stronger guarantees for mutable borrows | Cameron Zwarich | -84/+158 |
| 2014-06-13 | syntax: parse outer attributes in `quote_item!` calls. | Huon Wilson | -2/+6 |
| 2014-06-13 | libsyntax: Allow `+` to separate trait bounds from objects. | Patrick Walton | -51/+86 |
| 2014-06-13 | librustc: Fix the issue with labels shadowing variable names by making | Patrick Walton | -64/+80 |
| 2014-06-13 | auto merge of #14831 : alexcrichton/rust/format-intl, r=brson | bors | -4/+41 |
| 2014-06-11 | std: Remove i18n/l10n from format! | Alex Crichton | -4/+41 |
| 2014-06-11 | rustc: Remove ~[T] from the language | Alex Crichton | -6/+12 |
| 2014-06-11 | rustc: Move the AST from @T to Gc<T> | Alex Crichton | -2/+2 |
| 2014-06-11 | syntax: Move the AST from @T to Gc<T> | Alex Crichton | -160/+173 |
| 2014-06-10 | Fix more misspelled comments and strings. | Joseph Crail | -2/+2 |
| 2014-06-09 | librustc: Implement sugar for the `FnMut` trait | Patrick Walton | -13/+71 |
| 2014-06-06 | auto merge of #14667 : aochagavia/rust/pr2, r=huonw | bors | -1/+1 |
| 2014-06-06 | Change to_str().to_string() to just to_str() | Adolfo OchagavĂa | -1/+1 |
| 2014-06-05 | Fallout from the libcollections movement | Alex Crichton | -1/+1 |
| 2014-06-04 | syntax: methodify the lexer | Corey Richardson | -1184/+1191 |
| 2014-06-03 | Add comments for the token table | Corey Richardson | -0/+4 |
| 2014-06-03 | syntax: shuffle some allocation out of binop_to_str | Corey Richardson | -13/+13 |
| 2014-06-01 | std: Drop Total from Total{Eq,Ord} | Alex Crichton | -5/+5 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -9/+9 |
| 2014-05-30 | libsyntax: Fix snake_case errors. | Kevin Butler | -47/+43 |
| 2014-05-30 | auto merge of #14517 : lucy/rust/issue-14499, r=alexcrichton | bors | -1/+1 |
| 2014-05-29 | auto merge of #14483 : ahmedcharles/rust/patbox, r=alexcrichton | bors | -3/+3 |
| 2014-05-29 | syntax: Fix span on illegal ABI errors | lucy | -1/+1 |
| 2014-05-28 | Parse macros in patterns | Keegan McAllister | -7/+20 |
| 2014-05-27 | Rename PatUniq to PatBox. Fixes part of #13910. | Ahmed Charles | -3/+3 |
| 2014-05-27 | auto merge of #14414 : richo/rust/features/nerf_unused_string_fns, r=alexcric... | bors | -105/+105 |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -104/+104 |
| 2014-05-27 | std: Remove String's to_owned | Richo Healey | -1/+1 |
| 2014-05-26 | syntax: Add a source field to `Local` for tracking if it comes from `let`s or... | Huon Wilson | -1/+2 |
| 2014-05-25 | Allow $foo:block nonterminals in expression position | Kevin Ballard | -7/+11 |