| Age | Commit message (Expand) | Author | Lines |
| 2015-03-26 | Implement `Reflect` trait with a variant on the standard OIBIT | Niko Matsakis | -1/+6 |
| 2015-03-23 | rollup merge of #23506: alexcrichton/remove-some-deprecated-things | Alex Crichton | -2/+0 |
| 2015-03-20 | Feature gate defaulted traits | Flavio Percoco | -0/+7 |
| 2015-03-18 | rustc: Remove some long deprecated features: | Alex Crichton | -2/+0 |
| 2015-03-13 | Add an "allocator" attribute to mark functions as allocators | Björn Steinbrink | -0/+3 |
| 2015-03-09 | remove uses of as_slice where deref coercions can be used | Richo Healey | -2/+2 |
| 2015-03-06 | Make #[derive(Anything)] into sugar for #[derive_Anything] | Keegan McAllister | -0/+14 |
| 2015-03-06 | Check gated attributes before and after macro expansion | Keegan McAllister | -37/+38 |
| 2015-03-06 | Auto merge of #22899 - huonw:macro-stability, r=alexcrichton | bors | -8/+34 |
| 2015-03-06 | Run feature-gating on the final AST passed to the compiler. | Huon Wilson | -5/+9 |
| 2015-03-06 | Add more debugging to syntax::feature_gate. | Huon Wilson | -2/+6 |
| 2015-03-06 | Add #[allow_internal_unstable] to track stability for macros better. | Huon Wilson | -1/+19 |
| 2015-03-05 | Rollup merge of #22764 - ivanradanov:fileline_help, r=huonw | Manish Goregaokar | -2/+2 |
| 2015-03-03 | Change span_help calls to fileline_help where appropriate | Ivan Radanov Ivanov | -2/+2 |
| 2015-03-03 | Rollup merge of #22876 - Florob:const, r=nikomatsakis | Manish Goregaokar | -2/+2 |
| 2015-03-03 | Rollup merge of #22960 - huonw:static-assert, r=huonw | Manish Goregaokar | -2/+5 |
| 2015-03-03 | Feature gate `#[static_assert]`. | Huon Wilson | -2/+5 |
| 2015-03-03 | Add cfg_attr to known attributes | Manish Goregaokar | -0/+1 |
| 2015-03-02 | Use `const`s instead of `static`s where appropriate | Florian Zeitz | -2/+2 |
| 2015-02-25 | Whitelist #[should_panic] | Steven Fackler | -0/+1 |
| 2015-02-25 | Turn `unsafe_no_drop_flag` back into a gated-feature. | Felix S. Klock II | -1/+3 |
| 2015-02-24 | Implement `<T>::method` UFCS expression syntax. | Eduard Burtescu | -1/+1 |
| 2015-02-24 | syntax: don't store a secondary NodeId for TyPath. | Eduard Burtescu | -1/+1 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -11/+11 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -11/+11 |
| 2015-02-18 | For now, accept the `i`, `u`, `is`, and `us` suffixes, but warn when | Niko Matsakis | -4/+4 |
| 2015-02-17 | Rollup merge of #22383 - pnkfelix:pass-features-along-during-expansion, r=huonw | Manish Goregaokar | -11/+42 |
| 2015-02-17 | Add gating for rustc_* attrs | Manish Goregaokar | -13/+30 |
| 2015-02-17 | move other attribute check to visit_attribute | Manish Goregaokar | -20/+10 |
| 2015-02-17 | Add `Gated` attribute type | Manish Goregaokar | -28/+28 |
| 2015-02-16 | Clean up visit_attribute in feature_gate.rs | Manish Goregaokar | -37/+26 |
| 2015-02-16 | Feature gate custom attributes (fixes #22203) | Manish Goregaokar | -0/+54 |
| 2015-02-16 | Move ATTRIBUTE_WHITELIST and CRATE_ATTRS to KNOWN_ATTRIBUTES in syntax::featu... | Manish Goregaokar | -0/+69 |
| 2015-02-16 | Address the other cases of #22234; fix #22234. | Felix S. Klock II | -6/+32 |
| 2015-02-15 | Address the `asm!` case of #22234. | Felix S. Klock II | -5/+10 |
| 2015-02-15 | Rollup merge of #22277 - pnkfelix:reference-update-feature-gate-list, r=steve... | Manish Goregaokar | -0/+1 |
| 2015-02-13 | Added all active features to the list in reference.md. | Felix S. Klock II | -0/+1 |
| 2015-02-13 | Re-tag `slicing_syntax` as `Accepted`. | Felix S. Klock II | -1/+1 |
| 2015-02-11 | rollup merge of #22178: pnkfelix/featuregate-unsafe-no-drop-flag | Alex Crichton | -0/+10 |
| 2015-02-11 | Generalize all error messages with "experimental in alpha release" to | Felix S. Klock II | -1/+1 |
| 2015-02-11 | Feature-gate the `#[unsafe_no_drop_flag]` attribute. | Felix S. Klock II | -0/+10 |
| 2015-02-11 | generalize error text to not focus on any particular release. | Felix S. Klock II | -1/+1 |
| 2015-02-11 | Add `box_patterns` feature gate. | Felix S. Klock II | -1/+4 |
| 2015-02-09 | Use a crate attribute to load plugins | Keegan McAllister | -5/+5 |
| 2015-02-07 | Feature-gate #![no_std] | Keegan McAllister | -1/+9 |
| 2015-02-07 | Auto merge of #21505 - GuillaumeGomez:interned_string, r=alexcrichton | bors | -2/+3 |
| 2015-02-06 | Libsyntax has been updated | GuillaumeGomez | -3/+3 |
| 2015-02-06 | Replace the get method by the deref one on InternedString | GuillaumeGomez | -2/+3 |
| 2015-02-06 | Rollup merge of #21958 - brson:stable-features, r=alexcrichton | Manish Goregaokar | -5/+10 |
| 2015-02-06 | Rollup merge of #21954 - jbcrail:fix-misspelled-comments, r=steveklabnik | Manish Goregaokar | -1/+1 |