| Age | Commit message (Expand) | Author | Lines |
| 2013-08-10 | Merge branch 'enum-method-privacy' of https://github.com/michaelwoerister/rus... | Erick Tryzelaar | -10/+10 |
| 2013-08-09 | auto merge of #8362 : sfackler/rust/env, r=alexcrichton | bors | -6/+8 |
| 2013-08-08 | env! syntax extension changes | Steven Fackler | -6/+8 |
| 2013-08-08 | auto merge of #8245 : alexcrichton/rust/fmt2, r=graydon | bors | -0/+2 |
| 2013-08-07 | Add initial support for a new formatting syntax | Alex Crichton | -0/+2 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -1/+1 |
| 2013-08-07 | Enable privacy check for enum methods. | Michael Woerister | -10/+10 |
| 2013-08-05 | Updated std::Option, std::Either and std::Result | Marvin Löbel | -8/+8 |
| 2013-08-02 | auto merge of #8188 : huonw/rust/cfg-macro, r=pcwalton | bors | -0/+2 |
| 2013-08-01 | Remove the pipes compiler | Brian Anderson | -4/+2 |
| 2013-08-01 | syntax: implement cfg!() which evaluates to true/false where #[cfg] would kee... | Huon Wilson | -0/+2 |
| 2013-07-29 | New naming convention for ast::{node_id, local_crate, crate_node_id, blk_chec... | Michael Woerister | -1/+1 |
| 2013-07-24 | Disallow non-comma-delimited arguments to fmt! and bytes! | Birunthan Mohanathas | -4/+5 |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -3/+3 |
| 2013-07-20 | auto merge of #7902 : huonw/rust/attr++, r=cmr,pcwalton | bors | -1/+1 |
| 2013-07-20 | syntax: modernise attribute handling in syntax::attr. | Huon Wilson | -1/+1 |
| 2013-07-18 | librustc: Forbid `&` pointers (other than `&'static`) inside `@` boxes. | Patrick Walton | -2/+1 |
| 2013-07-17 | librustc: Remove all uses of the `Copy` bound. | Patrick Walton | -1/+1 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -2/+2 |
| 2013-07-17 | librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them. | Patrick Walton | -1/+1 |
| 2013-07-12 | Remove the global 'vec::to_owned' function | Alex Crichton | -2/+1 |
| 2013-07-07 | De-managed ast::Path | James Miller | -1/+1 |
| 2013-07-05 | Do not rely on newtype enum dereference | Seo Sanghyeon | -10/+7 |
| 2013-06-29 | 'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f... | Ben Blum | -1/+1 |
| 2013-06-25 | great renaming propagation: syntax | Corey Richardson | -5/+3 |
| 2013-06-13 | Revert "std: convert {vec,str}::to_owned to methods." | Brian Anderson | -1/+2 |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -21/+21 |
| 2013-06-12 | std: unify the str -> [u8] functions as 3 methods: .as_bytes() and .as_bytes_... | Huon Wilson | -1/+0 |
| 2013-06-12 | std: convert {vec,str}::to_owned to methods. | Huon Wilson | -1/+1 |
| 2013-06-05 | add hygiene support functions | John Clements | -0/+10 |
| 2013-06-05 | remove unused get_ident_interner's | John Clements | -1/+1 |
| 2013-06-05 | token_to_ident takes argument by reference | John Clements | -1/+1 |
| 2013-06-05 | interner just uses uints, not idents with syntax context | John Clements | -3/+3 |
| 2013-06-05 | just use TLS interner | John Clements | -3/+3 |
| 2013-06-05 | change to newer macro escape mechanism, using uints in more places | John Clements | -42/+83 |
| 2013-06-01 | Remove all uses of `pub impl`. rs=style | Patrick Walton | -25/+26 |
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -0/+1 |
| 2013-05-22 | libextra: Rename the actual metadata names of libcore to libstd and libstd to... | Patrick Walton | -0/+2 |
| 2013-05-22 | syntax/ext: modernise ext_ctxt to be CamelCase and use new. | Huon Wilson | -21/+20 |
| 2013-05-22 | syntax/ext: Remove the trait-object indirection of the ext_ctxt object. | Huon Wilson | -106/+82 |
| 2013-05-20 | Remove all unnecessary allocations (as flagged by lint) | Alex Crichton | -2/+2 |
| 2013-05-16 | Implement bytes! syntax extension | Sangeun Kim | -0/+2 |
| 2013-05-15 | auto merge of #6500 : kud1ing/rust/cleanup, r=bstrie | bors | -9/+0 |
| 2013-05-15 | remove deriving_eq, deriving_iter_bytes, deriving_clone (deprecated in 0.6) | Lenny222 | -9/+0 |
| 2013-05-15 | Rename vec::len(var) to var.len() | Youngmin Yoo | -1/+1 |
| 2013-05-14 | Use static string with fail!() and remove fail!(fmt!()) | Björn Steinbrink | -2/+2 |
| 2013-05-11 | auto merge of #6389 : sonwow/rust/issue-3356, r=bstrie | bors | -1/+1 |
| 2013-05-10 | renamed vec::from_slice to vec::to_owned | Youngsoo Son | -1/+1 |
| 2013-05-09 | Use a specialized string interner to reduce the need for owned strings | Björn Steinbrink | -3/+3 |
| 2013-05-05 | Merge remote-tracking branch 'mozilla/incoming' into issue-5910-dyna-freeze | Niko Matsakis | -11/+1 |