| Age | Commit message (Expand) | Author | Lines |
| 2013-05-22 | libstd: Rename libcore to libstd and libstd to libextra; update makefiles. | Patrick Walton | -1970/+0 |
| 2013-05-19 | Use assert_eq! rather than assert! where possible | Corey Richardson | -1/+1 |
| 2013-05-15 | Rename vec::len(var) to var.len() | Youngmin Yoo | -3/+3 |
| 2013-05-14 | Fix cosmetics for fail!() calls | Marvin Löbel | -2/+2 |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -13/+11 |
| 2013-05-11 | Warning police | Tim Chevalier | -13/+11 |
| 2013-05-09 | remove vecs_implicitly_copyable from libstd/libcore | Daniel Micay | -32/+29 |
| 2013-05-08 | libcore: Fix tests. | Patrick Walton | -1/+1 |
| 2013-05-08 | librustc: Fix merge fallout. | Patrick Walton | -8/+10 |
| 2013-05-08 | libstd: Remove mutable fields from fileinput and net_tcp | Patrick Walton | -19/+21 |
| 2013-05-05 | Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze | Niko Matsakis | -2/+0 |
| 2013-05-03 | std: Warning police | Tim Chevalier | -2/+0 |
| 2013-04-30 | new borrow checker (mass squash) | Niko Matsakis | -3/+3 |
| 2013-04-29 | librustc: Remove `ptr::addr_of`. | Patrick Walton | -41/+40 |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -2/+0 |
| 2013-04-19 | librustc: WIP patch for using the return value. | Patrick Walton | -8/+21 |
| 2013-04-18 | core::comm: Modernize constructors to use `new` | Brian Anderson | -15/+15 |
| 2013-04-16 | libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ... | Huon Wilson | -4/+4 |
| 2013-04-14 | std: remove unused unsafe blocks/functions | Alex Crichton | -160/+147 |
| 2013-03-31 | Fix warnings | Brian Anderson | -2/+1 |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -14/+14 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -2/+2 |
| 2013-03-27 | core/std: Remove uses of ++ mode | Tim Chevalier | -1/+1 |
| 2013-03-26 | libcore: Change `[const T]` to `const [T]` everywhere | Patrick Walton | -1/+1 |
| 2013-03-21 | librustc: Forbid destructors from being attached to any structs that might co... | Patrick Walton | -0/+1 |
| 2013-03-18 | librustc: Make the compiler ignore purity. | Patrick Walton | -2/+3 |
| 2013-03-13 | librustc: Don't accept `as Trait` anymore; fix all occurrences of it. | Patrick Walton | -1/+1 |
| 2013-03-11 | Remove uses of log | Brian Anderson | -69/+69 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -15/+15 |
| 2013-03-07 | libstd: Remove `extern mod { ... }` from libstd. rs=deexterning | Patrick Walton | -6/+10 |
| 2013-03-07 | De-implicit-self libstd | Ben Striegel | -15/+15 |
| 2013-03-03 | rustc: MIPS32 support | Jyun-Yan You | -0/+1 |
| 2013-03-02 | libstd: Remove `fn@`, `fn~`, and `fn&` from libstd. rs=defun | Patrick Walton | -8/+10 |
| 2013-03-01 | `std::net::tcp` docs: Use current syntax and types | Benjamin Herr | -76/+76 |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -1/+1 |
| 2013-02-21 | core: Extract comm from pipes. #4742 | Brian Anderson | -2/+2 |
| 2013-02-15 | auto merge of #4969 : nickdesaulniers/rust/issue3869, r=brson | bors | -1/+2 |
| 2013-02-15 | libstd: Get rid of `move`. | Luqman Aden | -25/+25 |
| 2013-02-14 | Convert all uses of vec::slice to vec::view Issue #3869 | Nick Desaulniers | -1/+2 |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip... | Patrick Walton | -4/+4 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -10/+10 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -0/+1 |
| 2013-02-04 | Merge remote-tracking branch 'bstrie/rimov' into incoming | Brian Anderson | -1/+1 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -1/+1 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -13/+13 |
| 2013-01-30 | RIMOV, round 5 | Ben Striegel | -1/+1 |
| 2013-01-29 | std: Stop using oldcomm | Brian Anderson | -303/+276 |
| 2013-01-28 | Tidy | Brian Anderson | -6/+9 |
| 2013-01-28 | Greatly improve performance for TcpSocketBuf.read | Michael Neumann | -35/+77 |
| 2013-01-28 | Convert log(debug, ...) to debug!(...) | Michael Neumann | -69/+62 |