| Age | Commit message (Expand) | Author | Lines |
| 2023-12-29 | Use Cargo's [workspace.lints.*] to config clippy | Tetsuharu Ohzeki | -0/+3 |
| 2023-12-22 | Special case fixup spans in server::Span impl, they are immutable | Lukas Wirth | -14/+38 |
| 2023-12-21 | Clean up | Lukas Wirth | -0/+8 |
| 2023-12-21 | Fix proc-macro-test-impl building without any proc-macros | Lukas Wirth | -5/+6 |
| 2023-12-21 | Fix dead code warnings | Lukas Wirth | -53/+13 |
| 2023-12-21 | Fix workspace layout | Lukas Wirth | -3/+10 |
| 2023-12-21 | Add eager-expand comment | Lukas Wirth | -0/+5 |
| 2023-12-21 | Move proc-macro-test into proc-macro-srv | Lukas Wirth | -1/+288 |
| 2023-12-21 | Implement other non-db reliant server::Span functions | Lukas Wirth | -15/+67 |
| 2023-12-21 | Implement server::Span::Join | Lukas Wirth | -75/+125 |
| 2023-12-21 | Add rust-analyzer-span server feature equivalent to the ID server | Lukas Wirth | -537/+1046 |
| 2023-12-17 | Auto merge of #118830 - GuillaumeGomez:env-tracked_env, r=Nilstrieb | bors | -0/+4 |
| 2023-12-11 | Update rust-analyzer to support new `injected_env_var` function | Guillaume Gomez | -0/+4 |
| 2023-12-11 | Merge commit '457b966b171b09a7e57acb710fbca29a4b3526f0' into sync-from-ra | Laurențiu Nicola | -151/+223 |
| 2023-11-22 | also make 'core_intrinsics' internal | Ralf Jung | -1/+1 |
| 2023-08-14 | Upgrade Object and related deps | dirreke | -1/+1 |
| 2023-08-07 | Merge commit 'baee6b338b0ea076cd7a9f18d47f175dd2ba0e5d' into sync-from-ra | Laurențiu Nicola | -10/+11 |
| 2023-07-17 | Merge commit '37f84c101bca43b11027f30ab0c2852f9325bc3d' into sync-from-ra | Laurențiu Nicola | -2/+2 |
| 2023-06-21 | Remove outdated import in r-a proc macro server. | Mara Bos | -4/+1 |
| 2023-06-20 | Add `Span::{line, column}` | Jacob Pratt | -0/+10 |
| 2023-06-20 | `Span::{before, after}` → `Span::{start, end}` | Jacob Pratt | -2/+2 |
| 2023-06-20 | Remove `LineColumn`, `Span::start`, `Span::end` | Jacob Pratt | -8/+0 |
| 2023-06-19 | Merge commit 'cd3bf9fe51676b520c546460e6d8919b8c8ff99f' into sync-from-ra | Laurențiu Nicola | -3/+3 |
| 2023-06-05 | Merge commit 'aa9bc8612514d216f84eec218dfd19ab83f3598a' into sync-from-ra | Laurențiu Nicola | -4675/+153 |
| 2023-03-11 | Renamed to byte_range and changed Range generics [skip ci] | Michael van Straten | -1/+1 |
| 2023-03-10 | Fixed rust-analyser: no implementation for position() | Michael van Straten | -1/+5 |
| 2023-02-13 | :arrow_up: rust-analyzer | Laurențiu Nicola | -4322/+158 |
| 2023-01-09 | :arrow_up: rust-analyzer | arcnmx | -39/+46 |
| 2022-11-23 | :arrow_up: rust-analyzer | Laurențiu Nicola | -9/+9 |
| 2022-10-11 | :arrow_up: rust-analyzer | Laurențiu Nicola | -22/+23 |
| 2022-09-01 | Auto merge of #100210 - mystor:proc_macro_diag_struct, r=eddyb | bors | -55/+4 |
| 2022-08-30 | :arrow_up: rust-analyzer | Laurențiu Nicola | -12/+6 |
| 2022-08-16 | :arrow_up: rust-analyzer | Laurențiu Nicola | -4455/+9 |
| 2022-08-09 | :arrow_up: rust-analyzer | Laurențiu Nicola | -1/+1 |
| 2022-08-06 | proc_macro/bridge: send diagnostics over the bridge as a struct | Nika Layzell | -55/+4 |
| 2022-08-02 | :arrow_up: rust-analyzer | Laurențiu Nicola | -3/+10 |
| 2022-07-22 | Add comment about replacing crossbeam with std scoped threads when they land | Amos Wenger | -0/+2 |
| 2022-07-21 | Use std::panic::resume_unwind | Amos Wenger | -9/+17 |
| 2022-07-21 | Move interner methods to Symbol, return SmolStr directly since it's ref-counted | Amos Wenger | -27/+19 |
| 2022-07-21 | Fix raw ident handling (a little) | Amos Wenger | -3/+3 |
| 2022-07-21 | Add test for idents incl. raw idents | Amos Wenger | -0/+15 |
| 2022-07-21 | Stringify literals create client-side properly | Amos Wenger | -11/+51 |
| 2022-07-21 | Add test for literals created client-side | Amos Wenger | -0/+30 |
| 2022-07-21 | Run proc macro expansion in a separate thread (for the thread-local interner) | Amos Wenger | -3/+11 |
| 2022-07-21 | Use a thread-local for the symbol interner (1/2) | Amos Wenger | -16/+33 |
| 2022-07-21 | Move version string to RustcInfo, read '.rustc' section only once | Amos Wenger | -6/+4 |
| 2022-07-21 | Pass tidy checks | Amos Wenger | -6/+11 |
| 2022-07-21 | Assert that sysroot ABI version matches exactly | Amos Wenger | -7/+60 |
| 2022-07-20 | implement literal_from_str (poorly) | Amos Wenger | -2/+9 |
| 2022-07-20 | Add literal/ident conversion, tests pass | Amos Wenger | -34/+68 |