| Age | Commit message (Expand) | Author | Lines |
| 2023-07-24 | Hide `ToString` implementations that specialize the default ones | Frank Steffahn | -2/+6 |
| 2023-06-20 | Merge proc_macro_span_shrink and proc_macro_span | Jacob Pratt | -2/+2 |
| 2023-06-20 | Add `Span::{line, column}` | Jacob Pratt | -0/+18 |
| 2023-06-20 | `Span::{before, after}` → `Span::{start, end}` | Jacob Pratt | -6/+6 |
| 2023-06-20 | Remove `LineColumn`, `Span::start`, `Span::end` | Jacob Pratt | -56/+1 |
| 2023-05-02 | fix TODO comments | Deadbeef | -0/+4 |
| 2023-04-21 | Auto merge of #109002 - michaelvanstraten:master, r=petrochenkov | bors | -1/+13 |
| 2023-04-12 | remove some unneeded imports | KaDiWa | -5/+3 |
| 2023-03-11 | Renamed to byte_range and changed Range generics [skip ci] | Michael van Straten | -4/+3 |
| 2023-03-10 | added byte position range for proc_macro::Span | Michael van Straten | -1/+1 |
| 2023-03-10 | added byte position range for proc_macro::Span | Michael van Straten | -1/+14 |
| 2023-02-12 | Auto merge of #105671 - lukas-code:depreciate-char, r=scottmcm | bors | -1/+0 |
| 2023-01-26 | Auto merge of #107318 - matthiaskrgr:rollup-776kd81, r=matthiaskrgr | bors | -1/+1 |
| 2023-01-16 | implement Hash for proc_macro::LineColumn | David Tolnay | -1/+1 |
| 2023-01-14 | Use associated items of `char` instead of freestanding items in `core::char` | Lukas Markeffsky | -1/+0 |
| 2023-01-12 | Improve proc macro attribute diagnostics | mejrs | -0/+1 |
| 2022-12-30 | Replace libstd, libcore, liballoc in line comments. | jonathanCogan | -2/+2 |
| 2022-12-30 | Replace libstd, libcore, liballoc in docs. | jonathanCogan | -3/+3 |
| 2022-12-12 | Add a "the" to proc_macro documentation | est31 | -1/+1 |
| 2022-11-06 | Bump version placeholders to release | Mark Rousskov | -1/+1 |
| 2022-10-18 | Stabilize proc_macro::Span::source_text | est31 | -1/+1 |
| 2022-10-05 | A tiny fix for `define_client_side`. | Nicholas Nethercote | -2/+2 |
| 2022-09-17 | Fix typo in proc_macro Span::eq | jam1garner | -1/+1 |
| 2022-09-12 | Rollup merge of #100767 - kadiwa4:escape_ascii, r=jackh726 | Dylan DPC | -6/+1 |
| 2022-09-04 | proc_macro/bridge: use the cross-thread executor for nested proc-macros | Nika Layzell | -1/+36 |
| 2022-08-19 | use <[u8]>::escape_ascii instead of core::ascii::escape_default | KaDiWa | -6/+1 |
| 2022-08-06 | proc_macro/bridge: send diagnostics over the bridge as a struct | Nika Layzell | -34/+20 |
| 2022-07-29 | proc_macro: use crossbeam channels for the proc_macro cross-thread bridge | Nika Layzell | -72/+64 |
| 2022-07-24 | Expose size_hint() for TokenStream's iterator | David Tolnay | -0/+8 |
| 2022-07-20 | Rollup merge of #99516 - m-ou-se:proc-macro-tracked-tracking-issue, r=Mark-Si... | Matthias Krüger | -4/+4 |
| 2022-07-20 | Use new tracking issue for proc_macro::tracked_*. | Mara Bos | -4/+4 |
| 2022-07-18 | proc_macro: Move subspan to be a method on Span in the bridge | Nika Layzell | -7/+2 |
| 2022-07-18 | proc_macro: stop using a remote object handle for Literal | Nika Layzell | -79/+156 |
| 2022-07-18 | proc_macro: stop using a remote object handle for Ident | Nika Layzell | -29/+395 |
| 2022-07-18 | proc_macro: Specialize Punct::to_string | Nika Layzell | -0/+7 |
| 2022-07-18 | proc_macro: use fxhash within the proc_macro crate | Nika Layzell | -20/+125 |
| 2022-06-28 | review changes | Nika Layzell | -28/+33 |
| 2022-06-26 | proc_macro: stop using a remote object handle for Group | Nika Layzell | -36/+45 |
| 2022-06-26 | proc_macro: stop using a remote object handle for Punct | Nika Layzell | -34/+32 |
| 2022-06-26 | proc_macro: Rename ExpnContext to ExpnGlobals, and unify method on Server trait | Nika Layzell | -30/+18 |
| 2022-06-25 | proc_macro: remove Context trait, and put span methods directly on Server | Nika Layzell | -13/+9 |
| 2022-06-25 | proc_macro: cache static spans in client's thread-local state | Nika Layzell | -86/+170 |
| 2022-06-19 | Auto merge of #98224 - eddyb:proc-macro-spurious-repr, r=bjorn3 | bors | -3/+0 |
| 2022-06-18 | proc_macro/bridge: remove `#[repr(C)]` from non-ABI-relevant types. | Eduard-Mihai Burtescu | -3/+0 |
| 2022-06-17 | review fixups | Nika Layzell | -67/+39 |
| 2022-06-17 | Move empty final TokenStream handling to server side of bridge | Nika Layzell | -14/+16 |
| 2022-06-17 | Try to reduce codegen complexity of TokenStream's FromIterator and Extend impls | Nika Layzell | -16/+92 |
| 2022-06-17 | proc_macro: reduce the number of messages required to create, extend, and ite... | Nika Layzell | -52/+74 |
| 2022-06-16 | proc_macro: use macros to simplify aggregate Mark/Unmark definitions | Nika Layzell | -24/+34 |
| 2022-06-14 | proc_macro: support encoding/decoding Vec<T> | Nika Layzell | -0/+35 |