| Age | Commit message (Expand) | Author | Lines |
| 2013-03-07 | librustc: Add #[link_args] to metadata | Patrick Walton | -0/+41 |
| 2013-03-07 | librustc: Convert all uses of `assert` over to `fail_unless!` | Patrick Walton | -28/+28 |
| 2013-03-07 | librustc: Remove structural record types from the compiler | Patrick Walton | -19/+0 |
| 2013-03-07 | Inline constants across crates. | Josh Matthews | -1/+2 |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -9/+10 |
| 2013-03-06 | auto merge of #5253 : nikomatsakis/rust/issue-5243, r=graydon | bors | -8/+12 |
| 2013-03-06 | Fix a bug with region-parameterized enums etc where trans considered | Niko Matsakis | -8/+12 |
| 2013-03-06 | Fix bug in coherence that causes all cross-crate impls to be regarded as | Niko Matsakis | -1/+1 |
| 2013-03-05 | core: convert vec::{last,last_opt} to return references | Erick Tryzelaar | -3/+5 |
| 2013-03-05 | rustc: minor code cleanup | Erick Tryzelaar | -1/+1 |
| 2013-03-05 | rustc: remove some copies | Erick Tryzelaar | -7/+8 |
| 2013-03-05 | core: convert vec::{init,initn} to return references | Erick Tryzelaar | -3/+5 |
| 2013-03-05 | auto merge of #5212 : thestinger/rust/iter, r=graydon | bors | -3/+3 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -25/+1 |
| 2013-03-03 | replace option::iter with a BaseIter impl | Daniel Micay | -3/+3 |
| 2013-03-02 | librustc: Remove `fn@`, `fn~`, and `fn&` from librustc. rs=defun | Patrick Walton | -4/+4 |
| 2013-03-02 | librustc: Forbid chained imports and fix the logic for one-level renaming imp... | Patrick Walton | -4/+4 |
| 2013-03-01 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -16/+84 |
| 2013-02-28 | Remove legacy object creation mode, and convert remaining uses of it | Niko Matsakis | -5/+4 |
| 2013-02-28 | librustc: Enforce cross-crate method privacy | Patrick Walton | -11/+80 |
| 2013-02-28 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -39/+62 |
| 2013-02-27 | Introduce lifetime declarations into the lists of type parameters. | Niko Matsakis | -39/+62 |
| 2013-02-27 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -1/+1 |
| 2013-02-26 | Removed deprecated `str()` functions in int-template.rs and uint-template.rs | Marvin Löbel | -1/+1 |
| 2013-02-25 | libsyntax: progress on making syntax::visit vecs_implicitly_copyable-free | Erick Tryzelaar | -5/+5 |
| 2013-02-25 | libsyntax: Convert ast::attribute_ to store a @meta_item | Erick Tryzelaar | -3/+3 |
| 2013-02-22 | De-implicit-self librustc | Ben Striegel | -8/+8 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -2/+2 |
| 2013-02-20 | Merge | Tim Chevalier | -4/+4 |
| 2013-02-20 | librustc: tidy | Luqman Aden | -1/+2 |
| 2013-02-20 | librustc: Get rid of structural records save for front/test.rs. | Luqman Aden | -156/+187 |
| 2013-02-19 | librustc: change driver::session::Session::str_of to return @~str | Erick Tryzelaar | -14/+14 |
| 2013-02-19 | librustc: convert creader and cstore to use @~strs | Erick Tryzelaar | -58/+57 |
| 2013-02-19 | librustc: minor cleanup | Erick Tryzelaar | -60/+55 |
| 2013-02-19 | convert ast::meta_items to take @~strs | Erick Tryzelaar | -7/+7 |
| 2013-02-19 | convert syntax::attr to use @~strs | Erick Tryzelaar | -21/+22 |
| 2013-02-19 | libsyntax and librustc: minor cleanup | Erick Tryzelaar | -6/+3 |
| 2013-02-19 | libsyntax: change attr:get_attr_name to take a ref | Erick Tryzelaar | -1/+1 |
| 2013-02-18 | auto merge of #5004 : luqmana/rust/rename-use-import, r=catamorphism | bors | -18/+19 |
| 2013-02-17 | libsyntax: Update view_item_use/import to reflect actual usage | Luqman Aden | -18/+19 |
| 2013-02-17 | rustc: Don't copy in add_used_link_args | Zack Corr | -2/+2 |
| 2013-02-17 | Support link_args at the crate level. Closes #1301 | Zack Corr | -0/+15 |
| 2013-02-15 | Rename cargo to rustpkg and start over fresh | Zack Corr | -27/+27 |
| 2013-02-15 | auto merge of #4969 : nickdesaulniers/rust/issue3869, r=brson | bors | -6/+7 |
| 2013-02-15 | tests/tutorials: Get rid of `move`. | Luqman Aden | -1/+1 |
| 2013-02-15 | librustc: Get rid of `move`. | Luqman Aden | -5/+5 |
| 2013-02-14 | Convert all uses of vec::slice to vec::view Issue #3869 | Nick Desaulniers | -6/+7 |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip... | Patrick Walton | -2/+2 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -33/+33 |
| 2013-02-13 | librustc: Make monomorphic newtype structs work cross-crate | Patrick Walton | -29/+93 |