| Age | Commit message (Expand) | Author | Lines |
| 2013-04-27 | Remove unnecessary fallbacks | Brendan Zabarauskas | -82/+0 |
| 2013-04-27 | Rename `nextafter` to `next_after` to match method name in Float | Brendan Zabarauskas | -8/+9 |
| 2013-04-27 | Add additional constants to primitive floating point numbers | Brendan Zabarauskas | -1/+96 |
| 2013-04-26 | core: Move mkdir_recursive from rustpkg into core::os | Tim Chevalier | -39/+40 |
| 2013-04-26 | rt: Set the stack depth limit to 1GB. Abort on error. | Brian Anderson | -86/+3 |
| 2013-04-26 | Suppress all 'cond' errors in valgrind. #5856 | Brian Anderson | -162/+2 |
| 2013-04-27 | Add mul_add and next_after methods to Float | Brendan Zabarauskas | -2/+55 |
| 2013-04-27 | Add Orderable trait | Brendan Zabarauskas | -4/+155 |
| 2013-04-26 | rt: use the [u]int[nn]_t types in the RNG. | Huon Wilson | -9/+14 |
| 2013-04-26 | Fix typo | Uwe Dauernheim | -1/+1 |
| 2013-04-26 | Combine PrimitiveInt, Int, and Uint traits into one single trait | Brendan Zabarauskas | -26/+8 |
| 2013-04-26 | add comment | Corey Richardson | -1/+1 |
| 2013-04-26 | Offer a hint on some unresolved imports | Corey Richardson | -1/+8 |
| 2013-04-26 | Added test cases for all fail message formats | Marvin Löbel | -0/+120 |
| 2013-04-26 | Fix failing test | Brendan Zabarauskas | -67/+71 |
| 2013-04-26 | Add BitCount trait | Brendan Zabarauskas | -16/+287 |
| 2013-04-26 | Add Int, Uint and Float traits for primitive numbers | Brendan Zabarauskas | -48/+122 |
| 2013-04-26 | Add Bitwise, Bounded, Primitive, and PrimitiveInt traits | Brendan Zabarauskas | -0/+258 |
| 2013-04-26 | Minor style improvements for test functions | Brendan Zabarauskas | -5/+2 |
| 2013-04-26 | Use `///` doc-comment form instead of `/** */` | Brendan Zabarauskas | -663/+662 |
| 2013-04-25 | rt: abort doesn't take an argument | Brian Anderson | -1/+1 |
| 2013-04-26 | Allow customization of indent offset | Uwe Dauernheim | -1/+6 |
| 2013-04-25 | auto merge of #6055 : cmr/rust/incoming, r=graydon,brson | bors | -8/+11 |
| 2013-04-26 | Add is_zero method to Zero | Brendan Zabarauskas | -56/+67 |
| 2013-04-25 | implement Ord, TotalEq and TotalOrd for char | Daniel Micay | -69/+56 |
| 2013-04-25 | auto merge of #6054 : catamorphism/rust/rustpkg, r=graydon | bors | -178/+387 |
| 2013-04-25 | auto merge of #6048 : bjz/rust/numeric-traits, r=pcwalton | bors | -319/+1148 |
| 2013-04-25 | Made fail! and assert! accept both &'static str and ~str, as well as a fmt! l... | Marvin Löbel | -26/+90 |
| 2013-04-25 | rt: pull upstream ISAAC code for consistency between 32/64 bit platforms | Huon Wilson | -18/+23 |
| 2013-04-25 | Rename vec::mod2 to vec::mod_zip | Corey Richardson | -16/+19 |
| 2013-04-24 | Move documentation for vec::windowed where it will be generated | Corey Richardson | -8/+10 |
| 2013-04-24 | Add basic documentation for with_capacity | Corey Richardson | -0/+1 |
| 2013-04-24 | Merge remote-tracking branch 'brson/io' | Brian Anderson | -307/+1339 |
| 2013-04-25 | Update impl of Round for Ratio | Brendan Zabarauskas | -20/+22 |
| 2013-04-25 | Restore Round trait and move appropriate methods out of Real | Brendan Zabarauskas | -67/+307 |
| 2013-04-24 | auto merge of #6051 : thestinger/rust/iterator, r=catamorphism,pcwalton | bors | -8/+37 |
| 2013-04-24 | Remove FIXME #2699---I believe the calculation is correct. Fixes #2699. | Niko Matsakis | -1/+0 |
| 2013-04-24 | rustpkg: Preliminary work on install command | Tim Chevalier | -30/+175 |
| 2013-04-24 | rustpkg: Correct directory structure in test scenarios | Tim Chevalier | -6/+11 |
| 2013-04-24 | rustpkg: Make path searching work as described in the rustpkg doc | Tim Chevalier | -151/+190 |
| 2013-04-24 | rustpkg: update README saying which tests pass | Tim Chevalier | -3/+23 |
| 2013-04-24 | core: Comments only -- move FIXME to correct location | Tim Chevalier | -2/+2 |
| 2013-04-24 | Remove needless FIXME. Fixes #2811. | Niko Matsakis | -2/+0 |
| 2013-04-24 | add a Counter iterator | Daniel Micay | -8/+37 |
| 2013-04-24 | Rename cleanup_task_local_map_ to cleanup_task_local_map_extern_cb | Brian Anderson | -2/+2 |
| 2013-04-25 | Add Fractional, Real and RealExt traits | Brendan Zabarauskas | -71/+724 |
| 2013-04-25 | Use borrowed pointers for Integer methods | Brendan Zabarauskas | -71/+71 |
| 2013-04-25 | Rename Natural to Integer | Brendan Zabarauskas | -5/+7 |
| 2013-04-25 | Use #[cfg(not(stage0))] to exclude items from stage0 | Brendan Zabarauskas | -63/+19 |
| 2013-04-25 | Move impls of `Num` out of core::num and clean up imports | Brendan Zabarauskas | -77/+53 |