| Age | Commit message (Expand) | Author | Lines |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -15/+15 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -1/+1 |
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -17/+17 |
| 2014-05-15 | std: Delegate some integer formatting to core::fmt | Alex Crichton | -18/+10 |
| 2014-05-08 | Handle breakage after libcore split | Kevin Ballard | -0/+3 |
| 2014-05-08 | More fallout from removing FromIterator on ~[T] | Kevin Ballard | -1/+1 |
| 2014-05-07 | core: Inherit the specific numeric modules | Alex Crichton | -204/+2 |
| 2014-05-03 | Add lint check for negating uint literals and variables. | Falco Hirschenberger | -0/+1 |
| 2014-04-27 | Rewrote documentation for parse_bytes and to_str_bytes in {int, uint}_macros.rs | Jacob Hegna | -5/+14 |
| 2014-04-22 | Removed trailing whitespace in on line 242 in int_macros.rs and on line 156 i... | Jacob Hegna | -1/+1 |
| 2014-04-22 | Added examples for parse_bytes(buf: &[u8], radix: uint) in int_macros.rs and ... | Jacob Hegna | -0/+10 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -15/+16 |
| 2014-04-18 | std: Make ~[T] no longer a growable vector | Alex Crichton | -2/+2 |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -2/+2 |
| 2014-02-24 | Remove std::num::ToStrRadix from the prelude | Brendan Zabarauskas | -0/+1 |
| 2014-02-23 | Remove all ToStr impls, add Show impls | Alex Crichton | -8/+0 |
| 2014-02-21 | auto merge of #12382 : bjz/rust/fmt-int, r=alexcrichton | bors | -1/+1 |
| 2014-02-22 | Reduce reliance on `to_str_radix` | Brendan Zabarauskas | -1/+1 |
| 2014-02-22 | Move std::num::Integer to libnum | Brendan Zabarauskas | -111/+0 |
| 2014-02-17 | Rename Bitwise::population_count to Bitwise::count_ones and add Bitwise::coun... | Brendan Zabarauskas | -7/+18 |
| 2014-02-13 | Removed num::Orderable | Michael Darakananda | -33/+0 |
| 2014-02-01 | Move int and uint overflow tests into macros | Brendan Zabarauskas | -0/+7 |
| 2014-01-30 | Remove unused imports. | OGINO Masanori | -1/+0 |
| 2014-01-25 | Uppercase numeric constants | Chris Wong | -8/+8 |
| 2014-01-18 | Simplify std::num::Primitive trait definition | Brendan Zabarauskas | -17/+1 |
| 2014-01-15 | auto merge of #11548 : bjz/rust/bitwise, r=alexcrichton | bors | -3/+2 |
| 2014-01-16 | Merge Bitwise and BitCount traits and remove from prelude, along with Bounded | Brendan Zabarauskas | -3/+2 |
| 2014-01-15 | Use the least significant beat to determine if int/uint is even | Flavio Percoco | -1/+1 |
| 2014-01-07 | Fix remaining cases of leaking imports | Alex Crichton | -0/+1 |
| 2013-12-05 | Fix documentation typo (divison operator is not backslash) | Alexandros Tasos | -1/+1 |
| 2013-11-29 | Removed module macro workaround for signed and unsigned integers | Marvin Löbel | -15/+2 |
| 2013-11-29 | Removed useless cmp::{min, max} reexports from the integer modules | Marvin Löbel | -2/+0 |
| 2013-11-29 | Removed a few macro-expanding-to-module workarounds | Marvin Löbel | -1/+3 |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -4/+4 |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -1/+1 |
| 2013-10-17 | std: Move size/align functions to std::mem. #2240 | Brian Anderson | -3/+3 |
| 2013-10-05 | std: add Primitive.is_signed | Erick Tryzelaar | -0/+3 |
| 2013-09-20 | Implement a web backend for rustdoc_ng | Alex Crichton | -0/+1 |
| 2013-09-18 | Remove and replace cond! Closes #9282. | Jimmy Zelinskie | -5/+5 |
| 2013-09-15 | Remove {uint,int,u64,i64,...}::from_str,from_str_radix | blake2-ppc | -43/+28 |
| 2013-09-15 | std::num: Remove `range_step` for each numeric type | blake2-ppc | -151/+0 |
| 2013-09-12 | std: Add a bunch of Default impls | Erick Tryzelaar | -0/+6 |
| 2013-09-08 | auto merge of #8988 : cmr/rust/fromstr_fn, r=brson | bors | -1/+1 |
| 2013-09-08 | Fix import order which caused the wrong from_str to be in scope | Corey Richardson | -1/+1 |
| 2013-09-05 | Rename str::from_bytes to str::from_utf8, closes #8985 | Florian Hahn | -1/+1 |
| 2013-08-30 | remove several 'ne' methods | Eric Martin | -2/+0 |
| 2013-08-27 | librustc: Ensure that type parameters are in the right positions in paths. | Patrick Walton | -4/+5 |
| 2013-08-22 | Enabled unit tests in std and extra. | Vadim Chugunov | -4/+0 |
| 2013-08-21 | auto merge of #8610 : kballard/rust/mod_floor, r=alexcrichton | bors | -2/+15 |
| 2013-08-20 | rm obsolete integer to_str{,_radix} free functions | Daniel Micay | -38/+27 |