| Age | Commit message (Expand) | Author | Lines |
| 2024-10-07 | Auto merge of #131235 - codemountains:rename-nestedmetaitem-to-metaitemlnner,... | bors | -8/+8 |
| 2024-10-07 | Rename nested_meta to meta_item_inner | codemountains | -1/+1 |
| 2024-10-06 | Auto merge of #129670 - est31:cfg_attr_crate_type_name_error, r=Urgau | bors | -14/+19 |
| 2024-10-06 | Rename NestedMetaItem to MetaItemInner | codemountains | -7/+7 |
| 2024-10-05 | Make deprecated_cfg_attr_crate_type_name a hard error | est31 | -14/+19 |
| 2024-10-04 | Rollup merge of #131034 - Urgau:cfg-true-false, r=nnethercote | Guillaume Gomez | -3/+5 |
| 2024-10-01 | Implement boolean lit support in cfg predicates | Urgau | -3/+3 |
| 2024-10-01 | Use `ast::NestedMetaItem` when evaluating cfg predicate | Urgau | -5/+7 |
| 2024-10-01 | Stabilize expr_2021 fragment in all editions | Eric Holk | -36/+6 |
| 2024-09-29 | cleanup: don't manually `unwrap_or_default()` | Matthias Krüger | -4/+2 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -114/+102 |
| 2024-09-22 | Auto merge of #130246 - dianne:issue-97589-fix, r=petrochenkov | bors | -3/+11 |
| 2024-09-13 | Remove unnecessary lifetimes from `rustc_expand`. | Nicholas Nethercote | -4/+4 |
| 2024-09-11 | rustc_expand: remember module #[path]s during expansion | dianne | -3/+11 |
| 2024-09-09 | Remove needless returns detected by clippy in the compiler | Eduardo Sánchez Muñoz | -8/+8 |
| 2024-09-06 | Add initial support for raw lifetimes | Michael Goulet | -8/+11 |
| 2024-08-27 | Add `warn(unreachable_pub)` to `rustc_expand`. | Nicholas Nethercote | -21/+22 |
| 2024-08-21 | Use bool in favor of Option<()> for diagnostics | Michael Goulet | -2/+2 |
| 2024-08-17 | Auto merge of #128771 - carbotaniuman:stabilize_unsafe_attr, r=nnethercote | bors | -12/+3 |
| 2024-08-16 | Fix wrong source location for some incorrect macro definitions | Wafarm | -6/+13 |
| 2024-08-14 | Use `impl PartialEq<TokenKind> for Token` more. | Nicholas Nethercote | -1/+1 |
| 2024-08-12 | Rollup merge of #128886 - GrigorenkoPV:untranslatable-diagnostic, r=nnethercote | Guillaume Gomez | -5/+2 |
| 2024-08-11 | Rollup merge of #128762 - fmease:use-more-slice-pats, r=compiler-errors | Matthias Krüger | -4/+4 |
| 2024-08-10 | rustc_expand: make a message translatable | Pavel Grigorenko | -2/+2 |
| 2024-08-10 | rustc_expand: remove some redundant `#[allow(rustc::untranslatable_diagnostic)]` | Pavel Grigorenko | -3/+0 |
| 2024-08-07 | refactor(rustc_expand::mbe): Don't require full ExtCtxt when not necessary | Felix Rath | -28/+28 |
| 2024-08-07 | Use more slice patterns inside the compiler | León Orell Valerian Liehr | -4/+4 |
| 2024-08-07 | Stabilize `unsafe_attributes` | carbotaniuman | -12/+3 |
| 2024-07-30 | Add toggle for `parse_meta_item` unsafe parsing | carbotaniuman | -1/+3 |
| 2024-07-29 | Deny unsafe on more builtin attributes | carbotaniuman | -1/+15 |
| 2024-07-29 | Rollup merge of #128202 - compiler-errors:internal-lib-features, r=oli-obk | Matthias Krüger | -0/+6 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -118/+130 |
| 2024-07-27 | Make `missing_fragment_specifier` an error in edition 2024 | Trevor Gross | -7/+35 |
| 2024-07-25 | Tell users not to file a bug when using internal library features | Michael Goulet | -0/+6 |
| 2024-07-24 | Rollup merge of #128133 - nnethercote:fix-cfg_attr-spans, r=petrochenkov | Matthias Krüger | -28/+28 |
| 2024-07-24 | Improve spans on evaluated `cfg_attr`s. | Nicholas Nethercote | -28/+28 |
| 2024-07-22 | Avoid passing state that will not be visited | Oli Scherer | -7/+7 |
| 2024-07-22 | Always pass the visitor as the first argument to walk* functions | Oli Scherer | -40/+40 |
| 2024-07-22 | Sync `mut_visit` function names with immut `visit` ones (s/noop_visit/walk/) | Oli Scherer | -70/+70 |
| 2024-07-22 | Make function items in mut visitors all go through the same visit_fn function... | Oli Scherer | -7/+7 |
| 2024-07-22 | Merge impl and trait item mut visitor methods to mirror immut visitor | Oli Scherer | -39/+38 |
| 2024-07-19 | Allow concat in repetitions | Caio | -45/+72 |
| 2024-07-17 | Rollup merge of #127542 - c410-f3r:concat-again, r=petrochenkov | Trevor Gross | -24/+37 |
| 2024-07-17 | Add support for literals | Caio | -24/+37 |
| 2024-07-13 | Rollup merge of #127558 - nnethercote:more-Attribute-cleanups, r=petrochenkov | Jubilee | -13/+17 |
| 2024-07-10 | Add some comments. | Nicholas Nethercote | -0/+3 |
| 2024-07-10 | Factor out `AttrsTarget` flattening code. | Nicholas Nethercote | -1/+4 |
| 2024-07-10 | Use `cfg_attr` as a name more. | Nicholas Nethercote | -11/+11 |
| 2024-07-10 | Rework `Attribute::get_tokens`. | Nicholas Nethercote | -3/+1 |
| 2024-07-08 | Rollup merge of #126841 - c410-f3r:concat-again, r=petrochenkov | 许杰友 Jieyou Xu (Joe) | -26/+80 |