| Age | Commit message (Expand) | Author | Lines |
| 2022-04-21 | Rollup merge of #96196 - jyn514:no-assertion, r=Mark-Simulacrum | Dylan DPC | -5/+7 |
| 2022-04-21 | Rollup merge of #90630 - GuillaumeGomez:improve-rustdoc-search, r=notriddle | Dylan DPC | -457/+2299 |
| 2022-04-20 | Extend `handleSingleArg` documentation | Guillaume Gomez | -0/+4 |
| 2022-04-20 | Auto merge of #96253 - Dylan-DPC:rollup-87hpds5, r=Dylan-DPC | bors | -93/+154 |
| 2022-04-20 | Rollup merge of #93313 - tmiasko:uninhabited, r=tmandry | Dylan DPC | -93/+154 |
| 2022-04-20 | Auto merge of #96250 - ehuss:update-cargo, r=ehuss | bors | -0/+3 |
| 2022-04-20 | Update cargo | Eric Huss | -0/+3 |
| 2022-04-20 | Auto merge of #96135 - petrochenkov:doclink6, r=GuillaumeGomez | bors | -131/+223 |
| 2022-04-19 | Rollup merge of #95813 - Urgau:rustdoc-where-clause-space, r=GuillaumeGomez | Dylan DPC | -1/+19 |
| 2022-04-19 | Rollup merge of #95740 - Amanieu:kreg0, r=nagisa | Dylan DPC | -14/+14 |
| 2022-04-19 | Add regression test for #96079 | Guillaume Gomez | -0/+26 |
| 2022-04-19 | rustdoc: Sligthly optimize `Attributes` construction and processing before do... | Vadim Petrochenkov | -44/+31 |
| 2022-04-19 | rustdoc: Cache preprocessed markdown links | Vadim Petrochenkov | -45/+68 |
| 2022-04-19 | rustdoc: Optimize and refactor doc link resolution | Vadim Petrochenkov | -40/+112 |
| 2022-04-19 | rustc_metadata: Store a flag telling whether an item may have doc links in it... | Vadim Petrochenkov | -17/+1 |
| 2022-04-19 | asm: Add a kreg0 register class on x86 which includes k0 | Amanieu d'Antras | -14/+14 |
| 2022-04-19 | Rollup merge of #96142 - cjgillot:no-crate-def-index, r=petrochenkov | Dylan DPC | -27/+17 |
| 2022-04-19 | Rollup merge of #96122 - TaKO8Ki:fix-invalid-error-for-suggestion-to-add-slic... | Dylan DPC | -0/+50 |
| 2022-04-19 | Rollup merge of #96086 - jsgf:remove-extern-location, r=davidtwco | Dylan DPC | -217/+0 |
| 2022-04-19 | Rollup merge of #95809 - ytmimi:llvm_stamp_typo, r=Mark-Simulacrum | Dylan DPC | -1/+1 |
| 2022-04-19 | Rollup merge of #94493 - oribenshir:feature/ISSUE-78543_async_fn_in_foreign_c... | Dylan DPC | -3/+15 |
| 2022-04-19 | Auto merge of #95379 - icewind1991:suggest-associated-type-more, r=jackh726 | bors | -10/+33 |
| 2022-04-18 | Remove assertion that all paths in `ShouldRun` exist | Joshua Nelson | -5/+7 |
| 2022-04-18 | Correctly handle single `:` | Guillaume Gomez | -10/+16 |
| 2022-04-18 | Auto merge of #96171 - nikic:llvm-update-2, r=cuviper | bors | -0/+0 |
| 2022-04-18 | Add test to ensure that keywords in path are working | Guillaume Gomez | -1/+16 |
| 2022-04-18 | Add an extra check over filter type | Guillaume Gomez | -4/+92 |
| 2022-04-18 | Fix some corner cases | Guillaume Gomez | -6/+29 |
| 2022-04-18 | Add more tests for quote errors | Guillaume Gomez | -3/+61 |
| 2022-04-18 | Parse idents the same way in both quote string elements and "normal" elements | Guillaume Gomez | -33/+45 |
| 2022-04-18 | Remove unnecessary `elem.name.length === 0` since the rustdoc search eBNF doe... | Guillaume Gomez | -1/+1 |
| 2022-04-18 | Add tests for paths | Guillaume Gomez | -0/+20 |
| 2022-04-18 | Update the eBNF to allow generics bracket to not be closed if it's EOF | Guillaume Gomez | -1/+1 |
| 2022-04-18 | Handle separators in their own functions and fix missing handling of tabs | Guillaume Gomez | -4/+235 |
| 2022-04-18 | Improve the BNF description a bit and fix some issues | Guillaume Gomez | -40/+201 |
| 2022-04-18 | Forbid rustdoc search query to end with -> | Guillaume Gomez | -0/+13 |
| 2022-04-18 | Add isIdentCharacter function to ensure that unexpected characters are handle... | Guillaume Gomez | -15/+45 |
| 2022-04-18 | Replace unneeded use of regex with a simple if | Guillaume Gomez | -1/+4 |
| 2022-04-18 | Apply suggestions: | Guillaume Gomez | -67/+121 |
| 2022-04-18 | Improve documentation and add some explanations in the code | Guillaume Gomez | -11/+26 |
| 2022-04-18 | Simplify parser syntax | Guillaume Gomez | -205/+50 |
| 2022-04-18 | Make query parser more strict and improve display of errors | Guillaume Gomez | -141/+242 |
| 2022-04-18 | * Greatly improve the rustdoc search parser source code | Guillaume Gomez | -510/+563 |
| 2022-04-18 | Add query syntax for the parser | Guillaume Gomez | -12/+71 |
| 2022-04-18 | * If type filter is in quotes, throw an error. | Guillaume Gomez | -58/+45 |
| 2022-04-18 | Improve naming of "val" field | Guillaume Gomez | -58/+58 |
| 2022-04-18 | Add parser tests | Guillaume Gomez | -6/+643 |
| 2022-04-18 | Add possibility to check parsed query | Guillaume Gomez | -21/+144 |
| 2022-04-18 | Update tests | Guillaume Gomez | -31/+81 |
| 2022-04-18 | Update search engine and parser to error when quotes are used on queries with... | Guillaume Gomez | -58/+104 |