| Age | Commit message (Expand) | Author | Lines |
| 2013-05-13 | Remove re-exports from libcore/core.rc | Alex Crichton | -0/+2 |
| 2013-05-09 | libstd: rename vec::each(var) to var.each | Youngmin Yoo | -1/+0 |
| 2013-05-09 | libcore: rename vec::each(variable) to variable.each | Youngmin Yoo | -2/+2 |
| 2013-05-08 | libcore: Fix tests. | Patrick Walton | -3/+3 |
| 2013-05-08 | libcore: Remove mutable fields from hash | Patrick Walton | -85/+123 |
| 2013-04-16 | libcore,std,syntax,rustc: move tests into `mod tests`, make them private (no ... | Huon Wilson | -152/+158 |
| 2013-04-08 | Removing no longer needed unsafe blocks | Alex Crichton | -36/+26 |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -22/+22 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -1/+1 |
| 2013-03-26 | librustc: Remove all uses of the old `[T * N]` fixed-length vector syntax | Patrick Walton | -3/+3 |
| 2013-03-26 | libcore: Change `[const T]` to `const [T]` everywhere | Patrick Walton | -3/+3 |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -22/+20 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -22/+22 |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -1/+1 |
| 2013-03-06 | Finish de-implicit-selifizng libcore | Ben Striegel | -3/+2 |
| 2013-03-05 | auto merge of #5233 : bstrie/rust/deimpselfcore, r=graydon | bors | -12/+13 |
| 2013-03-04 | De-implicit-self libcore | Ben Striegel | -12/+13 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -1/+0 |
| 2013-02-26 | Hoist macro defs out of inner function | John Clements | -29/+33 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -2/+2 |
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -3/+3 |
| 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 | -1/+1 |
| 2013-02-13 | RIMOV core::hash | Ben Striegel | -2/+2 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -4/+0 |
| 2013-02-03 | Converted libcore/uint-template.rs to the new string functions. | Marvin Löbel | -2/+2 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -1/+1 |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ... | Patrick Walton | -2/+5 |
| 2012-12-24 | Convert core::io to use explicit self (for issue #4118 and issue #2004) | gareth | -6/+6 |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 |
| 2012-11-29 | No longer parse the delimiters of the RHS of a macro as part of the expansion. | Paul Stansifer | -2/+2 |
| 2012-10-27 | Remove un-needed comparisons, suppress warnings | Tim Chevalier | -2/+2 |
| 2012-10-20 | Remove old fixed-length vector syntax | Ben Striegel | -68/+68 |
| 2012-10-12 | Make moves explicit in core tests | Tim Chevalier | -1/+1 |
| 2012-09-26 | libcore: De-export cleanup, cmath, future, gc, hash, iter-trait, mutable, and... | Patrick Walton | -16/+13 |
| 2012-09-19 | Remove final bits of residual hokey-hash functions. Close #1616. | Graydon Hoare | -67/+20 |
| 2012-09-19 | De-mode vec::each() and many of the str iteration routines | Niko Matsakis | -2/+6 |
| 2012-09-18 | Revert "replace explicit calls to vec::each with vec::each_ref, partially dem... | Niko Matsakis | -6/+2 |
| 2012-09-18 | replace explicit calls to vec::each with vec::each_ref, partially demode str | Niko Matsakis | -2/+6 |
| 2012-09-18 | Replace uses of 'unchecked' with 'unsafe' | Brian Anderson | -5/+5 |
| 2012-09-12 | Document IterBytes, Eq, Cmp, Hash. Close #3449. | Graydon Hoare | -1/+24 |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -2/+2 |
| 2012-09-10 | Make more moves explicit in libcore | Tim Chevalier | -2/+2 |
| 2012-09-07 | Migrate std::map to use core::hash::Hash trait. Disable many hokey hashes. | Graydon Hoare | -15/+15 |
| 2012-09-07 | Convert field terminators to commas. Stop parsing semis. | Brian Anderson | -9/+9 |
| 2012-09-04 | libcore: "import" -> "use" | Patrick Walton | -3/+3 |
| 2012-08-30 | Migrate core::send_map to random, keyed hashes w/ hash::Hash trait. | Graydon Hoare | -1/+1 |
| 2012-08-30 | Start moving core::hash to support a Hash trait. Add to_bytes::IterBytes trait. | Graydon Hoare | -20/+102 |
| 2012-08-27 | Convert over some residual uses of #oldmacros. | Graydon Hoare | -18/+28 |
| 2012-08-23 | `m1!{...}` -> `m1!(...)` | Paul Stansifer | -16/+16 |