| Age | Commit message (Expand) | Author | Lines |
| 2012-10-04 | Forbid deprecated modes again in core | Tim Chevalier | -2/+2 |
| 2012-10-02 | core::rand - adding rand::random(), a shortcut to generate a uint with task-l... | Daniel Patterson | -0/+13 |
| 2012-10-02 | libstd: Switch off legacy modes in both core and std. | Patrick Walton | -2/+2 |
| 2012-10-02 | core::rand - adding test for task_rng() | Daniel Patterson | -0/+8 |
| 2012-10-02 | core::rand - adding task local lazily initialized rng, as per #3439 | Daniel Patterson | -0/+27 |
| 2012-09-27 | Finish de-exporting path, rand, run, sys. Part of #3583. | Graydon Hoare | -1/+0 |
| 2012-09-27 | Demode rand | Tim Chevalier | -8/+12 |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -1/+1 |
| 2012-09-26 | libcore: De-export dvec, rand, run, and sys | Patrick Walton | -30/+25 |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under #[l... | Graydon Hoare | -0/+2 |
| 2012-09-20 | core: Move 'unreachable' to util. Improve docs | Brian Anderson | -1/+1 |
| 2012-09-10 | Make all remaining moves explicit in libcore | Tim Chevalier | -3/+3 |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -6/+6 |
| 2012-09-07 | Remove 'let' syntax for struct fields | Brian Anderson | -1/+1 |
| 2012-09-04 | core: Remove struct ctors | Brian Anderson | -1/+6 |
| 2012-08-29 | rustc: Make `<` and `=` into traits | Patrick Walton | -2/+4 |
| 2012-08-27 | make rand code use slices | Niko Matsakis | -13/+13 |
| 2012-08-27 | libcore: Replace a bunch of "== None" with ".is_none()". | Patrick Walton | -2/+2 |
| 2012-08-27 | Camel case various core constructors | Brian Anderson | -16/+16 |
| 2012-08-26 | Camel case the option type | Brian Anderson | -13/+13 |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -1/+1 |
| 2012-08-17 | Remove the class keyword | Brian Anderson | -1/+1 |
| 2012-08-14 | Convert more core types to camel case | Brian Anderson | -18/+19 |
| 2012-08-08 | Convert impls to new syntax | Brian Anderson | -3/+3 |
| 2012-08-01 | Convert ret to return | Brian Anderson | -5/+5 |
| 2012-07-31 | Change remaining "iface" occurrences to "trait"; deprecate "iface" | Lindsey Kuper | -1/+1 |
| 2012-07-30 | Change syntax extension syntax: `#m[...]` -> `m!{...}`. | Paul Stansifer | -1/+1 |
| 2012-07-16 | Prevent random floats from occasionally being greater than 1. | Jed Davis | -4/+4 |
| 2012-07-14 | Move the world over to using the new style string literals and types. Closes ... | Michael Sullivan | -4/+4 |
| 2012-07-06 | Move string append to libraries. Closes #2710. | Michael Sullivan | -3/+3 |
| 2012-07-04 | convert doc-attributes to doc-comments using ./src/etc/sugarise-doc-comments.... | Gareth Daniel Smith | -46/+60 |
| 2012-07-03 | Switch 'native' to 'extern' (or 'foreign' in some descriptions) | Graydon Hoare | -1/+1 |
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -5/+5 |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -1/+1 |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -32/+32 |
| 2012-06-27 | Removed pretty much all the vector+ from core (issue #2719) | Eric Holk | -1/+1 |
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -30/+31 |
| 2012-06-21 | [NEEDS SNAPSHOT] Port remainder of resources to classes in libcore | Tim Chevalier | -2/+6 |
| 2012-06-07 | Use #[cfg(unix)] and #[cfg(windows)] everywhere | Brian Anderson | -2/+2 |
| 2012-06-06 | miscellaneous pure annotations and other small changes. | Niko Matsakis | -1/+1 |
| 2012-06-05 | rt: Fix iaac_init using wrong type and not seeding correctly | Brian Anderson | -0/+11 |
| 2012-05-30 | Add xorshift to core::rand, which gave a 3x speedup for graph generation in t... | Eric Holk | -0/+30 |
| 2012-05-26 | core: Make range follow the for loop protocol | Brian Anderson | -1/+1 |
| 2012-05-21 | core: Fix typos in ignore attrs | Brian Anderson | -2/+2 |
| 2012-05-21 | core: Rework some rand functions to be more consistent | Brian Anderson | -27/+27 |
| 2012-05-21 | core: Ignore another should_fail test on win32 | Brian Anderson | -0/+1 |
| 2012-05-21 | core: Ignore a should_fail test on win32 | Brian Anderson | -0/+1 |
| 2012-05-21 | core: Fix types in rand mod | Brian Anderson | -1/+1 |
| 2012-05-21 | add a seeded random number generator so that sequences of random numbers can ... | Gareth Daniel Smith | -7/+39 |
| 2012-05-21 | add a bunch more rand::rng extension methods - one for each primitive type an... | Gareth Daniel Smith | -38/+275 |