| Age | Commit message (Expand) | Author | Lines |
| 2012-09-12 | Document IterBytes, Eq, Cmp, Hash. Close #3449. | Graydon Hoare | -1/+61 |
| 2012-09-12 | core: Implement ToStr for @str | Philipp Brüschweiler | -0/+4 |
| 2012-09-12 | purge the separate path for rel ops (e.g., ==) vs other bin ops | Niko Matsakis | -3/+3 |
| 2012-09-12 | Remove some transitional code | Brian Anderson | -125/+52 |
| 2012-09-12 | Add a bunch of inline hints. | Graydon Hoare | -0/+12 |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -114/+224 |
| 2012-09-12 | Rename core::rt_fail to core::rt_fail_ | Brian Anderson | -0/+6 |
| 2012-09-12 | Use a different strategy for transitioning to camel case extfmt | Brian Anderson | -5/+2 |
| 2012-09-12 | update to store map on stack, taking advantage of auto-ref | Niko Matsakis | -7/+7 |
| 2012-09-11 | Introduce auto adjustment table to subsume autoderef/autoref/borrowings. | Niko Matsakis | -2/+9 |
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -87/+88 |
| 2012-09-11 | Convert core::extfmt to camel case | Brian Anderson | -73/+266 |
| 2012-09-11 | Promote 'impl' from restricted keyword to strict | Brian Anderson | -4/+4 |
| 2012-09-11 | Convert 'use' to 'extern mod'. Remove old 'use' syntax | Brian Anderson | -2/+2 |
| 2012-09-11 | Promote 'pub' and 'priv' from restricted to strict keywords | Brian Anderson | -4/+4 |
| 2012-09-11 | Merge pull request #3440 from jld/vec-dedup | Brian Anderson | -0/+81 |
| 2012-09-10 | Convert 'import' to 'use'. Remove 'import' keyword. | Brian Anderson | -61/+60 |
| 2012-09-10 | Make all moves explicit in libsyntax | Tim Chevalier | -3/+3 |
| 2012-09-10 | rustc: Stop calling cmp shape glue in trans. | Patrick Walton | -0/+7 |
| 2012-09-10 | Rename the poorly named Managed<T> type to Mut<T>. | Niko Matsakis | -16/+24 |
| 2012-09-10 | fix a implicitly copyable warning | Niko Matsakis | -1/+1 |
| 2012-09-10 | Make all remaining moves explicit in libcore | Tim Chevalier | -54/+54 |
| 2012-09-10 | Convert class methods to impl methods. Stop parsing class methods | Brian Anderson | -37/+48 |
| 2012-09-10 | Make moves explicit in pipes and pipe compiler | Tim Chevalier | -46/+45 |
| 2012-09-10 | Make moves explicit in task; also make option::unwrap take its argument by move | Tim Chevalier | -55/+58 |
| 2012-09-10 | rustc: Make shape-based compare glue never called for comparison operators. | Patrick Walton | -15/+44 |
| 2012-09-10 | Make more moves explicit in libcore | Tim Chevalier | -77/+77 |
| 2012-09-10 | Make moves explicit in vec | Tim Chevalier | -52/+52 |
| 2012-09-10 | Add vec::dedup for in-place consecutive duplicate element removal. | Jed Davis | -0/+81 |
| 2012-09-09 | Rename variables that clash with keywords | Brian Anderson | -6/+6 |
| 2012-09-09 | core: warn(non_camel_case_types) -> deny | Brian Anderson | -2/+1 |
| 2012-09-08 | core: fix separator for Future<A> property | Jeff Olson | -1/+1 |
| 2012-09-08 | core: missed rebase cruft cleanup | Jeff Olson | -4/+0 |
| 2012-09-08 | core: most rebase cruft cleanup | Jeff Olson | -2/+3 |
| 2012-09-08 | core: change FutureState Forced(A) to Forced(~A) | Jeff Olson | -4/+4 |
| 2012-09-08 | core: change notify_chan eq checks to is_none(), instead | Jeff Olson | -9/+8 |
| 2012-09-08 | core: patch from nmatsakis to make futures non-copyable | Jeff Olson | -4/+8 |
| 2012-09-08 | core/std: finish making futures sendable + test.. still issues | Jeff Olson | -4/+14 |
| 2012-09-08 | core/std: an unending parade of minor tweaks due to renaming Option et al | Jeff Olson | -3/+3 |
| 2012-09-08 | core: cleanup in task.rs for things missed in last rebase | Jeff Olson | -7/+7 |
| 2012-09-08 | core: fix breakage in TaskBuilder.future_result | Jeff Olson | -7/+15 |
| 2012-09-08 | core: changing pipes::port/chan_one to Port/ChanOne in unsafe.rs | Jeff Olson | -1/+1 |
| 2012-09-08 | core: Fix stage0 build errors | Brian Anderson | -19/+48 |
| 2012-09-08 | core: port task.rs to comm::Chan/Port to pipes::Chan/Port | Jeff Olson | -38/+135 |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -230/+230 |
| 2012-09-07 | Convert 'again' to 'loop'. Remove 'again' keyword | Brian Anderson | -7/+7 |
| 2012-09-07 | Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes. | Graydon Hoare | -192/+218 |
| 2012-09-07 | Add an ignore! macro, remove support for nested block comments, re: #2755. | Graydon Hoare | -1/+1 |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -38/+38 |
| 2012-09-07 | libcore: Make str_eq not break with coretest | Patrick Walton | -0/+17 |