| Age | Commit message (Expand) | Author | Lines |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -100/+100 |
| 2014-06-14 | rustc: Obsolete the `@` syntax entirely | Alex Crichton | -1/+3 |
| 2014-06-11 | rustc: Remove ~[T] from the language | Alex Crichton | -7/+7 |
| 2014-06-06 | Rename Iterator::len to count | Aaron Turon | -25/+23 |
| 2014-06-01 | std: Drop Total from Total{Eq,Ord} | Alex Crichton | -9/+9 |
| 2014-05-30 | syntax: Prepare for Total{Eq,Ord} => {Eq,Ord} | Alex Crichton | -1/+2 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -30/+30 |
| 2014-05-22 | auto merge of #14357 : huonw/rust/spelling, r=pnkfelix | bors | -2/+4 |
| 2014-05-22 | Spelling/doc formatting fixes. | Huon Wilson | -2/+4 |
| 2014-05-21 | Change static.rust-lang.org to doc.rust-lang.org | Alex Crichton | -1/+1 |
| 2014-05-20 | Remove useless ToPrimitive bound on range_inclusive() | Kevin Ballard | -1/+1 |
| 2014-05-19 | core::iter::order functions now take two types of iterators. | TyOverby | -8/+18 |
| 2014-05-15 | core: Update all tests for fmt movement | Alex Crichton | -34/+76 |
| 2014-05-15 | core: Derive Show impls wherever possible | Alex Crichton | -1/+1 |
| 2014-05-13 | std: Move the owned module from core to std | Alex Crichton | -1/+1 |
| 2014-05-08 | Handle fallout in documentation | Kevin Ballard | -2/+2 |
| 2014-05-08 | Handle fallout in iter, option, result, and sync::arc | Kevin Ballard | -34/+35 |
| 2014-05-07 | core: Get coretest working | Alex Crichton | -4/+4 |
| 2014-05-07 | core: Inherit the iter module | Alex Crichton | -0/+3090 |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -326/+0 |
| 2013-05-19 | Register snapshots | Brian Anderson | -42/+5 |
| 2013-05-16 | iter: add fold, sum and product | Daniel Micay | -0/+106 |
| 2013-05-13 | Remove re-exports from libcore/core.rc | Alex Crichton | -0/+1 |
| 2013-05-10 | test: Use the new `for` protocol | Alex Crichton | -3/+28 |
| 2013-05-10 | core: Use the new `for` protocol | Alex Crichton | -20/+28 |
| 2013-05-08 | rename iter::iter_to_vec to iter::to_vec | Daniel Micay | -6/+5 |
| 2013-04-30 | iter: add max and min functions | Daniel Micay | -2/+66 |
| 2013-04-30 | iter: add a find function | Daniel Micay | -0/+29 |
| 2013-04-28 | make way for a new iter module | Daniel Micay | -323/+78 |
| 2013-04-19 | test: Rewrite nbody and spectralnorm shootout benchmarks | Patrick Walton | -0/+4 |
| 2013-04-13 | Avoid excessive allocations and copies in iter::to_vec | Björn Steinbrink | -1/+1 |
| 2013-04-10 | Added iter_to_vec conversion fn | Marvin Löbel | -0/+26 |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -1/+1 |
| 2013-03-26 | Fixes mozilla/rust#3612. | Felix S. Klock II | -1/+2 |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -63/+50 |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -2/+2 |
| 2013-03-18 | librustc: Convert all uses of old lifetime notation to new lifetime notation.... | Patrick Walton | -1/+1 |
| 2013-03-13 | add a trait for mutable iterators | Daniel Micay | -0/+4 |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -26/+26 |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -1/+1 |
| 2013-02-26 | Add current year in the copyright header | Olivier Saut | -1/+1 |
| 2013-02-26 | Various typos corrected | Olivier Saut | -8/+8 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -7/+7 |
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -6/+6 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -2/+2 |
| 2013-02-07 | add a ReverseIter trait | Daniel Micay | -0/+4 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -3/+0 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -2/+2 |
| 2013-01-30 | librustc: Change `self` as a type to `Self` everywhere. r=brson | Patrick Walton | -1/+1 |
| 2013-01-14 | spelling fixes for iter module docstrings | Daniel Micay | -3/+3 |