| Age | Commit message (Expand) | Author | Lines |
| 2014-06-14 | auto merge of #14884 : huonw/rust/getoptsfail, r=alexcrichton | bors | -4/+3 |
| 2014-06-14 | auto merge of #14874 : pcwalton/rust/enum-to-float-casts-part-deux, r=alexcri... | bors | -3/+27 |
| 2014-06-13 | Reorganize code in check_loans | Cameron Zwarich | -93/+93 |
| 2014-06-13 | Enforce stronger guarantees for mutable borrows | Cameron Zwarich | -2/+22 |
| 2014-06-13 | Fix all violations of stronger guarantees for mutable borrows | Cameron Zwarich | -9/+16 |
| 2014-06-13 | Rename analyze_move_out_from to analyze_restrictions_on_use | Cameron Zwarich | -18/+18 |
| 2014-06-13 | Make analyze_move_out_from take a BorrowKind | Cameron Zwarich | -7/+20 |
| 2014-06-13 | Make analyze_move_out_from more field-sensitive | Cameron Zwarich | -13/+35 |
| 2014-06-13 | Make check_for_move_of_borrowed_path take an &LoanPath rather than an &Rc<Loa... | Cameron Zwarich | -5/+5 |
| 2014-06-13 | Make analyze_move_out_from use a loop rather than recursion | Cameron Zwarich | -13/+20 |
| 2014-06-14 | getopts: format failure messages with `Show`. | Huon Wilson | -4/+3 |
| 2014-06-13 | librustc: Forbid `transmute` from being called on types whose size is | Patrick Walton | -5/+226 |
| 2014-06-13 | librustc: Take in account mutability when casting array to raw ptr. | Luqman Aden | -3/+3 |
| 2014-06-13 | rustc: [T, ..N] and [T, ..N+1] are not the same | Alex Crichton | -1/+2 |
| 2014-06-13 | Fix the unused struct field lint for struct variants | Jakub Wieczorek | -21/+39 |
| 2014-06-13 | libsyntax: Allow `+` to separate trait bounds from objects. | Patrick Walton | -0/+2 |
| 2014-06-13 | librustc: Fix the issue with labels shadowing variable names by making | Patrick Walton | -6/+7 |
| 2014-06-13 | librustc: Forbid enum-to-float casts. | Patrick Walton | -3/+27 |
| 2014-06-13 | Introduce VecPerParamSpace and use it to represent sets of types and | Niko Matsakis | -2172/+2494 |
| 2014-06-13 | auto merge of #14831 : alexcrichton/rust/format-intl, r=brson | bors | -127/+348 |
| 2014-06-13 | Dump results of analysis phase as CSV | Nick Cameron | -2/+2435 |
| 2014-06-12 | debuginfo: Fix issue with unique type IDs not being passed to LLVM for LLVM 3.4 | Michael Woerister | -4/+17 |
| 2014-06-12 | debuginfo: Generate cross-crate unique type identifiers for debuginfo types. | Michael Woerister | -139/+656 |
| 2014-06-12 | auto merge of #14801 : pcwalton/rust/name-shadowing-in-one-pattern, r=alexcri... | bors | -42/+28 |
| 2014-06-11 | std: Remove i18n/l10n from format! | Alex Crichton | -127/+348 |
| 2014-06-11 | rustc: Remove ~[T] from the language | Alex Crichton | -38/+15 |
| 2014-06-11 | librustc: Forbid identifiers that shadow in the same pattern in let | Patrick Walton | -42/+28 |
| 2014-06-11 | auto merge of #14746 : alexcrichton/rust/libsync, r=brson | bors | -3/+2 |
| 2014-06-11 | sync: Move underneath libstd | Alex Crichton | -3/+2 |
| 2014-06-11 | rustc: Move the AST from @T to Gc<T> | Alex Crichton | -1258/+1300 |
| 2014-06-11 | rustc: Update how Gc<T> is recognized | Alex Crichton | -89/+84 |
| 2014-06-10 | auto merge of #14786 : pcwalton/rust/enum-to-float-casts, r=alexcrichton | bors | -1/+1 |
| 2014-06-10 | auto merge of #14764 : jbcrail/rust/fix-more-comments, r=alexcrichton | bors | -23/+23 |
| 2014-06-10 | auto merge of #14752 : jakub-/rust/issue-11940, r=alexcrichton | bors | -14/+12 |
| 2014-06-10 | auto merge of #14696 : jakub-/rust/dead-struct-fields, r=alexcrichton | bors | -108/+106 |
| 2014-06-10 | Fix more misspelled comments and strings. | Joseph Crail | -23/+23 |
| 2014-06-09 | auto merge of #14606 : pcwalton/rust/fn-trait-sugar, r=alexcrichton | bors | -17/+125 |
| 2014-06-09 | auto merge of #14783 : alexcrichton/rust/rollup, r=alexcrichton | bors | -2/+15 |
| 2014-06-09 | librustc: Use *signed* extension when converting enums to floats. | Patrick Walton | -1/+1 |
| 2014-06-09 | librustc: Implement sugar for the `FnMut` trait | Patrick Walton | -17/+125 |
| 2014-06-09 | rustdoc: Correctly classify enums/typedefs | Alex Crichton | -0/+13 |
| 2014-06-09 | std: Move dynamic_lib from std::unstable to std | Brian Anderson | -2/+2 |
| 2014-06-09 | auto merge of #14590 : pcwalton/rust/overloaded-call, r=nick29581 | bors | -234/+507 |
| 2014-06-09 | Document rustc::plugin | Keegan McAllister | -12/+100 |
| 2014-06-09 | Use phase(plugin) in bootstrap crates | Keegan McAllister | -0/+5 |
| 2014-06-09 | Implement #[plugin_registrar] | Keegan McAllister | -76/+335 |
| 2014-06-09 | librustc: Implement overloading for the call operator behind a feature | Patrick Walton | -234/+507 |
| 2014-06-09 | auto merge of #14709 : alexcrichton/rust/collections, r=brson | bors | -1/+0 |
| 2014-06-08 | auto merge of #14740 : P1start/rust/name-warnings, r=alexcrichton | bors | -6/+40 |
| 2014-06-08 | core: Rename `container` mod to `collections`. Closes #12543 | Brian Anderson | -1/+0 |