| Age | Commit message (Expand) | Author | Lines |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -34/+34 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -1/+1 |
| 2013-03-26 | Switched over a bunch of splitting funktions to non-allocating iterators | Marvin Löbel | -1/+3 |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -1/+1 |
| 2013-03-22 | libcore: Remove `pure` from libcore. rs=depure | Patrick Walton | -2/+2 |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -16/+16 |
| 2013-03-13 | librustc: Don't accept `as Trait` anymore; fix all occurrences of it. | Patrick Walton | -22/+100 |
| 2013-03-11 | Remove uses of log | Brian Anderson | -5/+4 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -40/+40 |
| 2013-03-07 | libcore: Remove `extern mod { ... }` from libcore. rs=deexterning | Patrick Walton | -7/+12 |
| 2013-03-04 | De-implicit-self libcore | Ben Striegel | -33/+33 |
| 2013-02-28 | Remove legacy object creation mode, and convert remaining uses of it | Niko Matsakis | -6/+6 |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -1/+1 |
| 2013-02-27 | Turn old `drop` blocks into `Drop` traits | Ben Striegel | -1/+4 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -3/+3 |
| 2013-02-19 | rt: fix memory-unsafe random seed logic, r=valgrindclean | Graydon Hoare | -17/+27 |
| 2013-02-15 | auto merge of #4964 : luqmana/rust/demove, r=graydon | bors | -3/+3 |
| 2013-02-15 | libcore: Get rid of `move`. | Luqman Aden | -3/+3 |
| 2013-02-14 | encapsulate isaac RNG in rust_rng struct | Chris Peterson | -10/+10 |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip... | Patrick Walton | -17/+17 |
| 2013-02-13 | RIMOV core::rand | Ben Striegel | -1/+1 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -4/+0 |
| 2013-02-05 | core: Add a rand::Rand trait that is implemented by types that can be | Zack Corr | -0/+100 |
| 2013-01-24 | convert most of libcore records into structs | Erick Tryzelaar | -15/+21 |
| 2013-01-10 | librustc: Make all external functions unsafe. r=tjc | Patrick Walton | -12/+26 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -1/+3 |
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the neare... | Patrick Walton | -3/+1 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -1/+3 |
| 2012-12-27 | librustc: Fix the test runner, the condition system, and core test. rs=bustage | Patrick Walton | -0/+3 |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ... | Patrick Walton | -0/+8 |
| 2012-12-23 | core: Mark some functions as pure | Chris Peterson | -2/+2 |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 |
| 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 |