| Age | Commit message (Expand) | Author | Lines |
| 2018-08-11 | A few cleanups for fmt_macros, graphviz, apfloat, target, serialize and term | ljedrz | -1/+1 |
| 2018-06-26 | migrate codebase to `..=` inclusive range patterns | Zack M. Davis | -3/+3 |
| 2016-09-04 | Replace `_, _` with `..` | Vadim Petrochenkov | -1/+1 |
| 2016-04-11 | std: Stabilize APIs for the 1.9 release | Alex Crichton | -1/+4 |
| 2015-07-27 | Show appropriate feature flags in docs | Steve Klabnik | -2/+4 |
| 2015-04-21 | Model lexer: Fix remaining issues | Piotr Czarnecki | -2/+0 |
| 2015-04-01 | Fallout in public-facing and semi-public-facing libs | Niko Matsakis | -1/+1 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -6/+6 |
| 2015-03-23 | Add #![feature] attributes to doctests | Brian Anderson | -0/+2 |
| 2015-03-13 | Remove explicit syntax highlight from docs. | Joseph Crail | -2/+2 |
| 2015-03-11 | Example -> Examples | Steve Klabnik | -2/+2 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -1/+1 |
| 2015-03-02 | Use `const`s instead of `static`s where appropriate | Florian Zeitz | -1/+1 |
| 2015-02-03 | Auto merge of #21613 - alfie:suffix-small, r=alexcrichton | bors | -2/+2 |
| 2015-02-02 | More deprecating of i/u suffixes | Alfie John | -2/+2 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -1/+1 |
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -1/+1 |
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -1/+1 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -2/+2 |
| 2015-01-27 | cleanup: s/`v.slice*()`/`&v[a..b]`/g + remove redundant `as_slice()` calls | Jorge Aparicio | -1/+1 |
| 2015-01-20 | std: Rename Show/String to Debug/Display | Alex Crichton | -6/+2 |
| 2015-01-06 | core: split into fmt::Show and fmt::String | Sean McArthur | -2/+2 |
| 2015-01-05 | sed -i -s 's/ for Sized?//g' **/*.rs | Jorge Aparicio | -2/+2 |
| 2015-01-03 | sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs | Jorge Aparicio | -1/+1 |
| 2014-12-19 | libserialize: use `#[deriving(Copy)]` | Jorge Aparicio | -2/+1 |
| 2014-12-08 | librustc: Make `Copy` opt-in. | Niko Matsakis | -0/+2 |
| 2014-12-06 | libserialize: remove unnecessary `to_string()` calls | Jorge Aparicio | -1/+1 |
| 2014-12-06 | libserialize: remove unnecessary `as_slice()` calls | Jorge Aparicio | -15/+11 |
| 2014-11-25 | /** -> /// | Steve Klabnik | -40/+36 |
| 2014-11-22 | std: Align `raw` modules with unsafe conventions | Alex Crichton | -3/+2 |
| 2014-11-17 | Switch to purely namespaced enums | Steven Fackler | -0/+3 |
| 2014-11-06 | DTSify libserialize traits | Jorge Aparicio | -4/+4 |
| 2014-11-02 | Add Error impls to a few key error types | Aaron Turon | -0/+15 |
| 2014-09-30 | librustc: Forbid `..` in range patterns. | Patrick Walton | -3/+3 |
| 2014-09-16 | Fallout from renaming | Aaron Turon | -1/+1 |
| 2014-08-26 | Use temp vars for implicit coercion to ^[T] | Nick Cameron | -2/+3 |
| 2014-08-06 | Remove cast to char in libserialize::hex | nham | -5/+5 |
| 2014-08-06 | Use byte literals in libserialize | nham | -3/+3 |
| 2014-07-24 | Deprecated `str::raw::from_utf8_owned` | Adolfo OchagavĂa | -2/+2 |
| 2014-07-22 | auto merge of #15867 : cmr/rust/rewrite-lexer4, r=alexcrichton | bors | -0/+2 |
| 2014-07-21 | ignore-lexer-test to broken files and remove some tray hyphens | Corey Richardson | -0/+2 |
| 2014-07-15 | Deprecate `str::from_utf8_owned` | Adolfo OchagavĂa | -1/+1 |
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -1/+1 |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -2/+2 |
| 2014-06-18 | Deprecate the bytes!() macro. | Simon Sapin | -1/+1 |
| 2014-05-28 | std: Remove format_strbuf!() | Alex Crichton | -2/+1 |
| 2014-05-27 | Move std::{reflect,repr,Poly} to a libdebug crate | Alex Crichton | -1/+1 |
| 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 | -4/+4 |
| 2014-05-22 | libcore: Remove all uses of `~str` from `libcore`. | Patrick Walton | -2/+10 |