| Age | Commit message (Expand) | Author | Lines |
| 2013-03-31 | Fix warnings | Brian Anderson | -2/+2 |
| 2013-03-30 | auto merge of #5630 : erickt/rust/serial, r=erickt | bors | -27/+13 |
| 2013-03-30 | syntax: fix auto_encode test. | Erick Tryzelaar | -4/+4 |
| 2013-03-29 | Add AbiSet and integrate it into the AST. | Niko Matsakis | -1/+3 |
| 2013-03-29 | Merge remote-tracking branch 'remotes/origin/incoming' into serial | Erick Tryzelaar | -15/+2 |
| 2013-03-29 | Merge remote-tracking branch 'remotes/origin/incoming' into serial | Erick Tryzelaar | -3/+3 |
| 2013-03-29 | librustc: Remove `fail_unless!` | Patrick Walton | -15/+2 |
| 2013-03-29 | Merge remote-tracking branch 'remotes/origin/incoming' into serial | Erick Tryzelaar | -41/+20 |
| 2013-03-29 | std: add Encoder::emit_map and Decoder::read_map | Erick Tryzelaar | -0/+10 |
| 2013-03-29 | std: remove Encoder::read_rec and Decoder::emit_rec | Erick Tryzelaar | -3/+0 |
| 2013-03-29 | std: remove Encoder::emit_tup{,_elt} and Decoder::read_tup{,_elt} | Erick Tryzelaar | -7/+0 |
| 2013-03-29 | std: remove Encoder::emit_{owned,managed}_vec and Decoder::read_{owned,manage... | Erick Tryzelaar | -9/+2 |
| 2013-03-29 | std: remove Encoder::emit_{owned,managed} and Decoder::read_{owned,managed} | Erick Tryzelaar | -4/+0 |
| 2013-03-29 | std: remove Encoder::emit_{owned,managed}_str and Decoder::read_{owned,manage... | Erick Tryzelaar | -4/+1 |
| 2013-03-28 | Removing unused imports | Alex Crichton | -41/+20 |
| 2013-03-28 | auto merge of #5593 : luqmana/rust/inline-asm, r=catamorphism | bors | -3/+13 |
| 2013-03-28 | librustc: Remove common fields and nested enums from the language | Patrick Walton | -15/+5 |
| 2013-03-27 | auto merge of #5578 : erickt/rust/incoming, r=jbclements,erickt | bors | -23/+245 |
| 2013-03-27 | libsyntax: Allow selecting intel style asm. | Luqman Aden | -1/+5 |
| 2013-03-27 | libsyntax: use a struct for inline asm in ast. | Luqman Aden | -3/+9 |
| 2013-03-27 | syntax: Remove deprecated expr_vstore_fixed | Erick Tryzelaar | -5/+0 |
| 2013-03-27 | std: Decode::read_enum_variant should pass in the variant names | Erick Tryzelaar | -3/+14 |
| 2013-03-27 | std: add option type directly to serialize::{En,De}code | Erick Tryzelaar | -9/+70 |
| 2013-03-27 | syntax: pass some values around by reference | Erick Tryzelaar | -4/+4 |
| 2013-03-27 | syntax: Add new values that can be used with the quasiquoter | Erick Tryzelaar | -2/+157 |
| 2013-03-27 | remove sty_by_ref, though traces still remain due to dtors | Niko Matsakis | -4/+4 |
| 2013-03-26 | librustc: Modify all code to use new lifetime binder syntax | Patrick Walton | -10/+12 |
| 2013-03-26 | option: rm functions that duplicate methods | Daniel Micay | -3/+1 |
| 2013-03-26 | syntax: Removing uses of HashMap | Alex Crichton | -14/+18 |
| 2013-03-26 | Remove unused imports throughout | Alex Crichton | -6/+2 |
| 2013-03-26 | Rip out old code that still structured method calls as a | Niko Matsakis | -119/+93 |
| 2013-03-22 | librustc: Add explicit lifetime binders and new lifetime notation in core/std... | Patrick Walton | -2/+2 |
| 2013-03-22 | librustc: Remove the `const` declaration form everywhere | Patrick Walton | -1/+1 |
| 2013-03-22 | libsyntax: Introduce the new `assert!` macro; make `assert` no longer a keyword | Patrick Walton | -0/+13 |
| 2013-03-22 | auto merge of #5488 : pcwalton/rust/depure, r=pcwalton | bors | -13/+13 |
| 2013-03-22 | librustc: Remove `pure` from libsyntax and librustc. | Patrick Walton | -10/+10 |
| 2013-03-22 | librustc: Remove all uses of `static` from functions. rs=destatic | Patrick Walton | -3/+3 |
| 2013-03-22 | Pass the fmt! buffer to each conversion method | Alex Crichton | -58/+59 |
| 2013-03-22 | Build up the result of fmt! in a buffer instead of a vector | Alex Crichton | -30/+44 |
| 2013-03-22 | syntax: make old `#[deriving_foo]` attribute obsolete | Andrew Paseltiner | -3/+31 |
| 2013-03-22 | syntax: replace uses of old deriving attribute with new one | Andrew Paseltiner | -4/+4 |
| 2013-03-21 | auto merge of #5407 : jbclements/rust/add-assert-eq-macro, r=jbclements | bors | -18/+25 |
| 2013-03-21 | back-renamed slice_DBG_BRWD, slice_V_DBG_BRWD -> slice, slice_DBG_UNIQ -> sli... | Marvin Löbel | -1/+1 |
| 2013-03-21 | renamed str::view -> slice_DBG_BRWD | Marvin Löbel | -1/+1 |
| 2013-03-20 | change some uses of fail_unless to assert_eq | John Clements | -18/+15 |
| 2013-03-20 | add assert_eq! macro | John Clements | -0/+10 |
| 2013-03-20 | auto merge of #5434 : apasel422/rust/deriving, r=nikomatsakis | bors | -1271/+1356 |
| 2013-03-20 | syntax: Removing some bad copies | Alex Crichton | -7/+7 |
| 2013-03-19 | syntax: split deriving module into submodules for each trait | Andrew Paseltiner | -977/+1062 |
| 2013-03-19 | auto merge of #5436 : alexcrichton/rust/assert-message, r=pcwalton | bors | -0/+5 |