| Age | Commit message (Expand) | Author | Lines |
| 2013-08-05 | Add std::num::Saturating | Kevin Ballard | -60/+157 |
| 2013-08-06 | std: Remove uint::iterate, replaced by `range` | blake2-ppc | -24/+0 |
| 2013-08-05 | Updated std::Option, std::Either and std::Result | Marvin Löbel | -1/+1 |
| 2013-08-03 | replace all remaining `for` with `foreach` or `do` | Daniel Micay | -43/+57 |
| 2013-08-02 | librustc: Disallow "unsafe" for external functions | Patrick Walton | -95/+96 |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -28/+2 |
| 2013-08-01 | std: Change `Times` trait to use `do` instead of `for` | blake2-ppc | -7/+6 |
| 2013-07-30 | Improve std::num module description, and fix some formatting | Brendan Zabarauskas | -21/+4 |
| 2013-07-30 | Add some missing method wrappers to std::num | Brendan Zabarauskas | -2/+24 |
| 2013-07-24 | Change 'print(fmt!(...))' to printf!/printfln! in src/lib* | Birunthan Mohanathas | -1/+1 |
| 2013-07-22 | std: add #[bench] benchmarks for num::strconv | Graydon Hoare | -0/+24 |
| 2013-07-20 | librustc: Remove `pub extern` and `priv extern` from the language. | Patrick Walton | -99/+133 |
| 2013-07-20 | auto merge of #7894 : pcwalton/rust/and-pointers-in-at-boxes, r=brson | bors | -2/+2 |
| 2013-07-19 | std: Remove old magic core mod | Brian Anderson | -1/+1 |
| 2013-07-18 | librustc: Forbid `&` pointers (other than `&'static`) inside `@` boxes. | Patrick Walton | -2/+2 |
| 2013-07-17 | librustc: Remove all uses of the `Copy` bound. | Patrick Walton | -6/+4 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -9/+10 |
| 2013-07-10 | Switch over to new range_rev semantics; fix #5270. | Felix S. Klock II | -6/+8 |
| 2013-07-10 | Refactored int/uint range code in preparation for change to range_rev semantics. | Felix S. Klock II | -33/+148 |
| 2013-07-08 | Replaces the free-standing functions in f32, &c. | Jens Nockert | -263/+81 |
| 2013-07-01 | rustc: add a lint to enforce uppercase statics. | Huon Wilson | -7/+17 |
| 2013-06-30 | auto merge of #7487 : huonw/rust/vec-kill, r=cmr | bors | -3/+2 |
| 2013-06-30 | Specialize to_str_common for floats/integers in strconv | Alex Crichton | -134/+182 |
| 2013-06-30 | Convert vec::{reverse, swap} to methods. | Huon Wilson | -3/+2 |
| 2013-06-28 | librustc: Remove the broken overloaded assign-ops from the language. | Patrick Walton | -1/+1 |
| 2013-06-28 | librustc: Disallow "mut" from distributing over bindings. | Patrick Walton | -2/+4 |
| 2013-06-18 | replace #[inline(always)] with #[inline]. r=burningtree. | Graydon Hoare | -578/+578 |
| 2013-06-16 | Add copies to type params with Copy bound | Niko Matsakis | -17/+17 |
| 2013-06-14 | Add Zero impls for lots of common types | Alex Crichton | -0/+15 |
| 2013-06-12 | std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_... | Huon Wilson | -37/+38 |
| 2013-06-11 | std: convert pow, hypot, atan2, log to take arguments by reference. | Huon Wilson | -20/+20 |
| 2013-06-08 | std: Fix search-and-replace typos | Tim Chevalier | -1/+1 |
| 2013-06-04 | librustc: Disallow multiple patterns from appearing in a "let" declaration. | Patrick Walton | -2/+2 |
| 2013-05-30 | Add example for uint::range_step. | Steve Klabnik | -3/+12 |
| 2013-05-30 | Require documentation by default for libstd | Alex Crichton | -0/+35 |
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -4/+35 |
| 2013-05-29 | Changed to a more efficient implementation. | Matthijs Hofstra | -16/+4 |
| 2013-05-29 | Replaced calls to external fmin/fmax by a Rust implementation. | Matthijs Hofstra | -4/+31 |
| 2013-05-28 | Silence various warnings throughout test modules | Alex Crichton | -80/+80 |
| 2013-05-28 | auto merge of #6771 : thestinger/rust/highlight, r=luqmana | bors | -3/+3 |
| 2013-05-27 | syntax highlight code examples in docstrings | Daniel Micay | -3/+3 |
| 2013-05-27 | Get rid of no-longer-needed #[doc(hidden)] attributes. | Lindsey Kuper | -2/+0 |
| 2013-05-24 | Remove usage of the #[merge] hack with int modules | Alex Crichton | -1121/+923 |
| 2013-05-23 | cleanup warnings from libstd | Erick Tryzelaar | -152/+150 |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -2861/+7635 |
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -22/+22 |
| 2013-05-14 | auto merge of #6471 : gifnksm/rust/reform-rational, r=brson | bors | -84/+126 |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -1/+1 |
| 2013-05-14 | libstd: Add tests for BigRational | gifnksm | -20/+56 |
| 2013-05-14 | libstd: `Ratio` requires `Clone` instead of `Copy` | gifnksm | -23/+28 |