| Age | Commit message (Expand) | Author | Lines |
| 2015-06-10 | Removed many pointless calls to *iter() and iter_mut() | Joshua Landau | -5/+5 |
| 2015-04-24 | Change name of unit test sub-module to "tests". | Johannes Oertel | -1/+1 |
| 2015-04-14 | Negative case of `len()` -> `is_empty()` | Tamir Duberstein | -9/+9 |
| 2015-04-01 | Fallout in public-facing and semi-public-facing libs | Niko Matsakis | -4/+4 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -20/+20 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -2/+2 |
| 2015-02-24 | Use arrays instead of vectors in tests | Vadim Petrochenkov | -3/+3 |
| 2015-02-18 | Remove usage of .map(|&foo| foo) | Kevin Butler | -1/+1 |
| 2015-02-15 | Fix the fallout | Vadim Petrochenkov | -1/+1 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -3/+3 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -4/+4 |
| 2015-01-20 | std: Rename Show/String to Debug/Display | Alex Crichton | -8/+8 |
| 2015-01-06 | core: split into fmt::Show and fmt::String | Sean McArthur | -3/+3 |
| 2015-01-03 | sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs | Jorge Aparicio | -5/+5 |
| 2015-01-02 | Fallout - change array syntax to use `;` | Nick Cameron | -2/+2 |
| 2014-12-30 | Fallout from stabilization | Aaron Turon | -3/+4 |
| 2014-12-25 | Remove Ascii, AsciiCast, OwnedAsciiCast, AsciiStr, IntoBytes, IntoString. | Simon Sapin | -4/+2 |
| 2014-12-19 | libterm: use `#[deriving(Copy)]` | Jorge Aparicio | -11/+4 |
| 2014-12-08 | librustc: Make `Copy` opt-in. | Niko Matsakis | -0/+8 |
| 2014-12-08 | auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton | bors | -2/+1 |
| 2014-12-06 | libterm: remove unnecessary `as_slice()` calls | Jorge Aparicio | -2/+1 |
| 2014-12-05 | Utilize fewer reexports | Corey Farwell | -1/+1 |
| 2014-12-03 | Fix fallout | Jorge Aparicio | -11/+11 |
| 2014-11-25 | /** -> /// | Steve Klabnik | -11/+9 |
| 2014-11-23 | rollup merge of #19194: aturon/stab-ascii | Jakub Bukaj | -3/+2 |
| 2014-11-21 | Fallout from deprecation | Aaron Turon | -3/+2 |
| 2014-11-21 | Fix various deprecation warnings from char changes | Brian Anderson | -3/+1 |
| 2014-11-18 | std: Stabilize std::fmt | Alex Crichton | -2/+2 |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -0/+5 |
| 2014-11-17 | Fix fallout from coercion removal | Nick Cameron | -23/+23 |
| 2014-10-30 | rollup merge of #18398 : aturon/lint-conventions-2 | Alex Crichton | -1/+1 |
| 2014-10-29 | Rename fail! to panic! | Steve Klabnik | -1/+1 |
| 2014-10-28 | Update code with new lint names | Aaron Turon | -1/+1 |
| 2014-10-16 | auto merge of #17947 : lukemetz/rust/master, r=aturon | bors | -1/+1 |
| 2014-10-15 | Renamed AsciiStr::to_lower and AsciiStr::to_upper | = | -1/+1 |
| 2014-10-13 | Clean up rustc warnings. | NODA, Kai | -22/+21 |
| 2014-09-30 | librustc: Forbid `..` in range patterns. | Patrick Walton | -6/+6 |
| 2014-09-21 | Fix fallout from Vec stabilization | Alex Crichton | -8/+8 |
| 2014-09-19 | Add enum variants to the type namespace | Nick Cameron | -11/+11 |
| 2014-09-16 | Fallout from renaming | Aaron Turon | -3/+3 |
| 2014-08-06 | Use byte literals in libterm | nham | -17/+16 |
| 2014-07-23 | collections: Deprecate shift/unshift | Brian Anderson | -2/+2 |
| 2014-07-17 | deprecate Vec::get | Nick Cameron | -3/+3 |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -1/+7 |
| 2014-06-18 | Deprecate the bytes!() macro. | Simon Sapin | -28/+26 |
| 2014-06-13 | Fix all violations of stronger guarantees for mutable borrows | Cameron Zwarich | -1/+2 |
| 2014-06-11 | std: Remove i18n/l10n from format! | Alex Crichton | -3/+3 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -3/+3 |
| 2014-05-28 | std: Remove format_strbuf!() | Alex Crichton | -5/+3 |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -56/+56 |