| Age | Commit message (Expand) | Author | Lines |
| 2013-03-11 | Remove uses of log | Brian Anderson | -11/+10 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -55/+55 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -2/+0 |
| 2013-02-28 | Fix implicit leaks of imports throughout libraries | Alex Crichton | -0/+3 |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -1/+1 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -1/+1 |
| 2013-02-17 | vec: grow_fn doesn't require Copy | Daniel Micay | -1/+1 |
| 2013-02-16 | deque: get rid of Copy requirement | Daniel Micay | -2/+0 |
| 2013-02-16 | deque: avoid Copy in grow | Daniel Micay | -8/+5 |
| 2013-02-16 | deque: avoid Copy for get | Daniel Micay | -17/+17 |
| 2013-02-16 | deque: avoid Copy in pop_{front,back} | Daniel Micay | -18/+17 |
| 2013-02-16 | deque: avoid Copy in peek_{front,back} | Daniel Micay | -52/+50 |
| 2013-02-16 | deque: avoid Copy in the get function | Daniel Micay | -7/+7 |
| 2013-02-16 | deque: separate the methods that need Copy | Daniel Micay | -1/+3 |
| 2013-02-16 | deque: rm old return statements | Daniel Micay | -5/+5 |
| 2013-02-16 | add a Mutable implementation (clear) to std::deque | Daniel Micay | -0/+9 |
| 2013-02-16 | modernize std::deque | Daniel Micay | -132/+109 |
| 2013-02-15 | libstd: Get rid of `move`. | Luqman Aden | -5/+5 |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip... | Patrick Walton | -1/+1 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -1/+1 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -1/+0 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -1/+1 |
| 2013-01-29 | libstd: Remove "dual impls" from the language and enforce coherence rules. r=... | Patrick Walton | -54/+4 |
| 2013-01-24 | convert most of libstd over to structs | Erick Tryzelaar | -17/+22 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -0/+4 |
| 2013-01-08 | Revert "librustc: Make unqualified identifier searches terminate at the neare... | Patrick Walton | -4/+0 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -0/+4 |
| 2012-12-27 | libstd: Fix a bunch of resolve errors in tests. rs=fire | Patrick Walton | -0/+2 |
| 2012-12-27 | librustc: Terminate name searches at the nearest module scope for paths that ... | Patrick Walton | -3/+5 |
| 2012-12-13 | Rename Owned trait to Durable | Brian Anderson | -1/+1 |
| 2012-12-03 | Update license, add license boilerplate to most files. Remainder will follow. | Graydon Hoare | -0/+10 |
| 2012-11-28 | Register snapshots | Brian Anderson | -61/+0 |
| 2012-11-19 | rustc: Implement explicit self for Eq and Ord. r=graydon | Patrick Walton | -1/+64 |
| 2012-10-04 | Remove by-copy mode from std, mostly | Tim Chevalier | -2/+2 |
| 2012-10-03 | Remove uses of + mode from libstd | Tim Chevalier | -7/+7 |
| 2012-09-28 | De-export std::deque. Part of #3583. | Graydon Hoare | -3/+2 |
| 2012-09-28 | std: More demoding | Brian Anderson | -4/+4 |
| 2012-09-28 | std: Eliminate deprecated patterns | Brian Anderson | -2/+1 |
| 2012-09-26 | Demode vec::push (and convert to method) | Niko Matsakis | -2/+2 |
| 2012-09-23 | Register snapshots. Remove redundant Eq impls, Makefile hacks | Brian Anderson | -56/+0 |
| 2012-09-21 | De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachi | Niko Matsakis | -6/+6 |
| 2012-09-21 | Install new pub/priv/export rules as defaults, old rules accessible under #[l... | Graydon Hoare | -0/+1 |
| 2012-09-20 | rustc: De-mode all overloaded operators | Patrick Walton | -0/+57 |
| 2012-09-13 | CamelCase and demode json.rs and deque.rs | Kevin Cantu | -75/+90 |
| 2012-09-12 | fixup mutability of vec::each, make iter_bytes pure | Niko Matsakis | -4/+3 |
| 2012-09-11 | Make moves explicit in arguments | Tim Chevalier | -3/+3 |
| 2012-09-10 | Make remaining moves explicit in libstd | Tim Chevalier | -2/+2 |
| 2012-09-07 | Convert all kind bounds to camel case. Remove send, owned keywords. | Brian Anderson | -5/+5 |
| 2012-09-04 | libstd: "import" -> "use" | Patrick Walton | -2/+2 |
| 2012-09-02 | std: warn(non_camel_case_types) everywhere. still some exceptions | Brian Anderson | -2/+0 |