| Age | Commit message (Expand) | Author | Lines |
| 2015-08-11 | Stabilize the Duration API | Steven Fackler | -1/+1 |
| 2015-05-13 | std: Redesign Duration, implementing RFC 1040 | Alex Crichton | -1/+1 |
| 2015-04-14 | bench: Fix fallout in benchmarks | Alex Crichton | -3/+3 |
| 2015-03-23 | Require feature attributes, and add them where necessary | Brian Anderson | -1/+1 |
| 2015-02-16 | Replace some uses of deprecated os functions | Simonas Kazlauskas | -29/+28 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -3/+3 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -7/+7 |
| 2015-01-29 | `range(a, b).foo()` -> `(a..b).foo()` | Jorge Aparicio | -2/+2 |
| 2015-01-08 | bench: fix a few compiler warnings | Tshepang Lekhonkhobe | -1/+0 |
| 2015-01-03 | Remove deprecated functionality | Alex Crichton | -2/+1 |
| 2015-01-02 | std: Stabilize the prelude module | Alex Crichton | -0/+1 |
| 2014-12-18 | s/Tree/BTree | Alexis Beingessner | -30/+6 |
| 2014-12-13 | Fix benches | Jorge Aparicio | -1/+3 |
| 2014-11-12 | time: Deprecate the library in the distribution | Alex Crichton | -6/+2 |
| 2014-11-06 | Fallout from collection conventions | Alexis Beingessner | -6/+6 |
| 2014-11-01 | collections: Remove all collections traits | Alex Crichton | -3/+25 |
| 2014-08-26 | Use temp vars for implicit coercion to ^[T] | Nick Cameron | -1/+2 |
| 2014-06-05 | Fallout from the libcollections movement | Alex Crichton | -4/+2 |
| 2014-05-22 | libcore: Remove all uses of `~str` from `libcore`. | Patrick Walton | -1/+1 |
| 2014-05-08 | Handle fallout in bench tests | Kevin Ballard | -0/+1 |
| 2014-04-18 | Update the rest of the compiler with ~[T] changes | Alex Crichton | -5/+4 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -2/+2 |
| 2014-03-12 | Update users for the std::rand -> librand move. | Huon Wilson | -1/+2 |
| 2014-02-23 | Move std::{trie, hashmap} to libcollections | Alex Crichton | -3/+1 |
| 2014-02-21 | Move time out of extra (cc #8784) | Arcterus | -2/+1 |
| 2014-02-14 | extern mod => extern crate | Alex Crichton | -2/+2 |
| 2014-02-07 | moved collections from libextra into libcollections | HeroesGrave | -1/+2 |
| 2014-01-23 | Update flip() to be rev(). | Sean Chalmers | -2/+2 |
| 2014-01-23 | Rename Invert to Flip - Issue 10632 | Sean Chalmers | -2/+2 |
| 2014-01-11 | Remove re-exports of std::io::stdio::{print, println} in the prelude. | Brendan Zabarauskas | -8/+11 |
| 2013-11-26 | test: Remove all remaining non-procedure uses of `do`. | Patrick Walton | -19/+18 |
| 2013-11-26 | test: Remove most uses of `&fn()` from the tests. | Patrick Walton | -1/+1 |
| 2013-11-11 | Remove #[fixed_stack_segment] and #[rust_stack] | Alex Crichton | -1/+0 |
| 2013-10-24 | Remove even more of std::io | Alex Crichton | -9/+8 |
| 2013-10-09 | std::rand: Add a trait for seeding RNGs: SeedableRng. | Huon Wilson | -2/+2 |
| 2013-10-09 | std::rand: Add an implementation of ISAAC64. | Huon Wilson | -1/+1 |
| 2013-09-26 | Update the compiler to not use printf/printfln | Alex Crichton | -2/+2 |
| 2013-09-15 | Remove {uint,int,u64,i64,...}::from_str,from_str_radix | blake2-ppc | -1/+1 |
| 2013-08-30 | Revert "src/test/bench: restructure" | Corey Richardson | -0/+174 |
| 2013-08-28 | src/test/bench: restructure | Corey Richardson | -174/+0 |
| 2013-08-27 | librustc: Fix merge fallout | Patrick Walton | -9/+9 |
| 2013-08-07 | Implement DoubleEndedIterator on Range | Kevin Ballard | -9/+6 |
| 2013-08-05 | Updated std::Option, std::Either and std::Result | Marvin Löbel | -1/+1 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -6/+6 |
| 2013-08-03 | replace all remaining `for` with `foreach` or `do` | Daniel Micay | -6/+9 |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -6/+6 |
| 2013-07-24 | Change 'print(fmt!(...))' to printf!/printfln! in src/test/ | Birunthan Mohanathas | -2/+2 |
| 2013-07-13 | Un-broke benchmarks | Steven Fackler | -3/+3 |
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -2/+5 |
| 2013-05-22 | test: Update tests to use the new syntax. | Patrick Walton | -8/+8 |