| Age | Commit message (Expand) | Author | Lines |
| 2014-10-07 | Use slice syntax instead of slice_to, etc. | Nick Cameron | -2/+2 |
| 2014-10-03 | Set the `non_uppercase_statics` lint to warn by default | P1start | -30/+33 |
| 2014-10-02 | Revert "Use slice syntax instead of slice_to, etc." | Aaron Turon | -2/+2 |
| 2014-10-02 | Use slice syntax instead of slice_to, etc. | Nick Cameron | -2/+2 |
| 2014-09-19 | Add enum variants to the type namespace | Nick Cameron | -31/+31 |
| 2014-09-17 | Test fixes from the rollup | Alex Crichton | -0/+2 |
| 2014-09-09 | Remove some test warnings. | Jonas Hietala | -42/+42 |
| 2014-09-05 | Make integer bit count methods return uints | Brendan Zabarauskas | -1/+1 |
| 2014-08-30 | Unify non-snake-case lints and non-uppercase statics lints | P1start | -0/+1 |
| 2014-08-26 | Use temp vars for implicit coercion to ^[T] | Nick Cameron | -3/+3 |
| 2014-08-17 | Make BigUint and BigInt Hash, fixes #16551 | Alexis Beingessner | -1/+54 |
| 2014-08-06 | Use byte literal in libnum | nham | -1/+1 |
| 2014-07-29 | Rename Integer trait `divides` to `is_multiple_of`. | Jonas Hietala | -4/+14 |
| 2014-07-16 | Main example for bigint usage. | Jonas Hietala | -42/+68 |
| 2014-07-08 | std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`. | Richo Healey | -4/+4 |
| 2014-06-29 | Implement RFC#28: Add PartialOrd::partial_cmp | Steven Fackler | -4/+4 |
| 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 | -5/+5 |
| 2014-06-18 | Merge the Bitwise and ByteOrder traits into the Int trait | Brendan Zabarauskas | -1/+1 |
| 2014-06-09 | Cleanup bigint | Adolfo Ochagavía | -36/+27 |
| 2014-06-06 | Document BigInt's new and from_slice methods | Adolfo Ochagavía | -0/+8 |
| 2014-06-01 | std: Drop Total from Total{Eq,Ord} | Alex Crichton | -5/+5 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -5/+5 |
| 2014-05-29 | std: Recreate a `rand` module | Alex Crichton | -2/+2 |
| 2014-05-28 | std: Remove format_strbuf!() | Alex Crichton | -13/+13 |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -26/+26 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -6/+6 |
| 2014-05-22 | libcore: Remove all uses of `~str` from `libcore`. | Patrick Walton | -48/+211 |
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -8/+10 |
| 2014-05-15 | Updates with core::fmt changes | Alex Crichton | -2/+2 |
| 2014-05-14 | libnum: Remove all uses of `~str` from `libnum` | Patrick Walton | -40/+43 |
| 2014-05-13 | Implements Default trait for BigInt and BigUint | Piotr Jawniak | -0/+11 |
| 2014-05-07 | Change the biguint documentation example to reflect deprecated owned vector | Tim Brooks | -1/+1 |
| 2014-05-01 | BigUint always use u64 as the internal machine unsigned integer | Guillaume Pinot | -166/+41 |
| 2014-04-28 | Deprecate the rev_iter pattern in all places where a DoubleEndedIterator is p... | Jonathan S | -3/+3 |
| 2014-04-27 | add BigUint subtraction underflow error message | Ryan Mulligan | -1/+9 |
| 2014-04-23 | Fix other bugs with new closure borrowing | Alex Crichton | -1/+1 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -31/+31 |
| 2014-04-11 | libtest: rename `BenchHarness` to `Bencher` | Liigo Zhuang | -10/+10 |
| 2014-04-10 | libstd: Implement `StrBuf`, a new string buffer type like `Vec`, and | Patrick Walton | -3/+3 |
| 2014-03-31 | num: Switch field privacy as necessary | Alex Crichton | -3/+3 |
| 2014-03-31 | vec: convert `append` and `append_one` to methods | Daniel Micay | -3/+1 |
| 2014-03-25 | Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by v... | Marvin Löbel | -1/+1 |
| 2014-03-24 | Correct issue workaround references | Steven Stewart-Gallus | -9/+8 |
| 2014-03-23 | std: remove the `equals` method from `TotalEq`. | Huon Wilson | -35/+6 |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -3/+0 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -5/+5 |
| 2014-03-18 | Docify std::vec_ng | Steven Fackler | -2/+2 |
| 2014-03-16 | num: Migrate `~[T]` to `std::vec_ng::Vec` | Florian Zeitz | -142/+143 |
| 2014-03-16 | num: Slightly optimize bigint | Florian Zeitz | -44/+32 |