pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/editors/helix



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Wed Dec  7 17:08:38 UTC 2022

Modified Files:
        pkgsrc/editors/helix: Makefile PLIST cargo-depends.mk distinfo
            tree-sitter-depends.mk
        pkgsrc/editors/helix/patches: patch-helix-loader_src_grammar.rs
            patch-helix-loader_src_lib.rs patch-helix-term_build.rs
Added Files:
        pkgsrc/editors/helix/files: print-depends.awk
Removed Files:
        pkgsrc/editors/helix: filter.awk languages2mk.mk

Log Message:
helix: Update to 22.12.

Rework the pkgsrc infrastructure to simplify tree-sitter-depends.mk, rewrite
the awk script to simplify things and support regular awk, and put it in the
usual place.  Also add support for Darwin (where this was tested).

# 22.12 (2022-12-06)

This is a great big release filled with changes from a 99 contributors. A big _thank you_ to you all!

As usual, the following is a summary of each of the changes since the last release.
For the full log, check out the [git log](https://github.com/helix-editor/helix/compare/22.08.1..22.12).

Breaking changes:

- Remove readline-like navigation bindings from the default insert mode keymap ([e12690e](https://github.com/helix-editor/helix/commit/e12690e), 
[#3811](https://github.com/helix-editor/helix/pull/3811), [#3827](https://github.com/helix-editor/helix/pull/3827), [#3915](https://github.com/helix-editor/helix/pull/3915), 
[#4088](https://github.com/helix-editor/helix/pull/4088))
- Rename `append_to_line` as `insert_at_line_end` and `prepend_to_line` as `insert_at_line_start` ([#3753](https://github.com/helix-editor/helix/pull/3753))
- Swap diagnostic picker and debug mode bindings in the space keymap ([#4229](https://github.com/helix-editor/helix/pull/4229))
- Select newly inserted text on paste or from shell commands ([#4458](https://github.com/helix-editor/helix/pull/4458), [#4608](https://github.com/helix-editor/helix/pull/4608), 
[#4619](https://github.com/helix-editor/helix/pull/4619), [#4824](https://github.com/helix-editor/helix/pull/4824))
- Select newly inserted surrounding characters on `ms<char>` ([#4752](https://github.com/helix-editor/helix/pull/4752))
- Exit select-mode after executing `replace_*` commands ([#4554](https://github.com/helix-editor/helix/pull/4554))
- Exit select-mode after executing surround commands ([#4858](https://github.com/helix-editor/helix/pull/4858))
- Change tree-sitter text-object keys ([#3782](https://github.com/helix-editor/helix/pull/3782))
- Rename `fleetish` theme to `fleet_dark` ([#4997](https://github.com/helix-editor/helix/pull/4997))

Features:

- Bufferline ([#2759](https://github.com/helix-editor/helix/pull/2759))
- Support underline styles and colors ([#4061](https://github.com/helix-editor/helix/pull/4061), [98c121c](https://github.com/helix-editor/helix/commit/98c121c))
- Inheritance for themes ([#3067](https://github.com/helix-editor/helix/pull/3067), [#4096](https://github.com/helix-editor/helix/pull/4096))
- Cursorcolumn ([#4084](https://github.com/helix-editor/helix/pull/4084))
- Overhauled system for writing files and quiting ([#2267](https://github.com/helix-editor/helix/pull/2267), [#4397](https://github.com/helix-editor/helix/pull/4397))
- Autosave when terminal loses focus ([#3178](https://github.com/helix-editor/helix/pull/3178))
- Use OSC52 as a fallback for the system clipboard ([#3220](https://github.com/helix-editor/helix/pull/3220))
- Show git diffs in the gutter ([#3890](https://github.com/helix-editor/helix/pull/3890), [#5012](https://github.com/helix-editor/helix/pull/5012), 
[#4995](https://github.com/helix-editor/helix/pull/4995))
- Add a logo ([dc1ec56](https://github.com/helix-editor/helix/commit/dc1ec56))
- Multi-cursor completion ([#4496](https://github.com/helix-editor/helix/pull/4496))

Commands:

- `file_picker_in_current_directory` (`<space>F`) ([#3701](https://github.com/helix-editor/helix/pull/3701))
- `:lsp-restart` to restart the current document's language server ([#3435](https://github.com/helix-editor/helix/pull/3435), [#3972](https://github.com/helix-editor/helix/pull/3972))
- `join_selections_space` (`A-j`) which joins selections and selects the joining whitespace ([#3549](https://github.com/helix-editor/helix/pull/3549))
- `:update` to write the current file if it is modified ([#4426](https://github.com/helix-editor/helix/pull/4426))
- `:lsp-workspace-command` for picking LSP commands to execute ([#3140](https://github.com/helix-editor/helix/pull/3140))
- `extend_prev_word_end` - the extend variant for `move_prev_word_end` ([7468fa2](https://github.com/helix-editor/helix/commit/7468fa2))
- `make_search_word_bounded` which adds regex word boundaries to the current search register value ([#4322](https://github.com/helix-editor/helix/pull/4322))
- `:reload-all` - `:reload` for all open buffers ([#4663](https://github.com/helix-editor/helix/pull/4663), [#4901](https://github.com/helix-editor/helix/pull/4901))
- `goto_next_change` (`]g`), `goto_prev_change` (`[g`), `goto_first_change` (`[G`), `goto_last_change` (`]G`) textobjects for jumping between VCS changes 
([#4650](https://github.com/helix-editor/helix/pull/4650))

Usability improvements and fixes:

- Don't log 'LSP not defined' errors in the logfile ([1caba2d](https://github.com/helix-editor/helix/commit/1caba2d))
- Look for the external formatter program before invoking it ([#3670](https://github.com/helix-editor/helix/pull/3670))
- Don't send LSP didOpen events for documents without URLs ([44b4479](https://github.com/helix-editor/helix/commit/44b4479))
- Fix off-by-one in `extend_line_above` command ([#3689](https://github.com/helix-editor/helix/pull/3689))
- Use the original scroll offset when opening a split ([1acdfaa](https://github.com/helix-editor/helix/commit/1acdfaa))
- Handle auto-formatting failures and save the file anyway ([#3684](https://github.com/helix-editor/helix/pull/3684))
- Ensure the cursor is in view after `:reflow` ([#3733](https://github.com/helix-editor/helix/pull/3733))
- Add default rulers and reflow config for git commit messages ([#3738](https://github.com/helix-editor/helix/pull/3738))
- Improve grammar fetching and building output ([#3773](https://github.com/helix-editor/helix/pull/3773))
- Add a `text` language to language completion ([cc47d3f](https://github.com/helix-editor/helix/commit/cc47d3f))
- Improve error handling for `:set-language` ([e8add6f](https://github.com/helix-editor/helix/commit/e8add6f))
- Improve error handling for `:config-reload` ([#3668](https://github.com/helix-editor/helix/pull/3668))
- Improve error handling when passing improper ranges to syntax highlighting ([#3826](https://github.com/helix-editor/helix/pull/3826))
- Render `<code>` tags as raw markup in markdown ([#3425](https://github.com/helix-editor/helix/pull/3425))
- Remove border around the LSP code-actions popup ([#3444](https://github.com/helix-editor/helix/pull/3444))
- Canonicalize the path to the runtime directory ([#3794](https://github.com/helix-editor/helix/pull/3794))
- Add a `themelint` xtask for linting themes ([#3234](https://github.com/helix-editor/helix/pull/3234))
- Re-sort LSP diagnostics after applying transactions ([#3895](https://github.com/helix-editor/helix/pull/3895), [#4319](https://github.com/helix-editor/helix/pull/4319))
- Add a command-line flag to specify the log file ([#3807](https://github.com/helix-editor/helix/pull/3807))
- Track source and tag information in LSP diagnostics ([#3898](https://github.com/helix-editor/helix/pull/3898), [1df32c9](https://github.com/helix-editor/helix/commit/1df32c9))
- Fix theme returning to normal when exiting the `:theme` completion ([#3644](https://github.com/helix-editor/helix/pull/3644))
- Improve error messages for invalid commands in the keymap ([#3931](https://github.com/helix-editor/helix/pull/3931))
- Deduplicate regexs in `search_selection` command ([#3941](https://github.com/helix-editor/helix/pull/3941))
- Split the finding of LSP root and config roots ([#3929](https://github.com/helix-editor/helix/pull/3929))
- Ensure that the cursor is within view after auto-formatting ([#4047](https://github.com/helix-editor/helix/pull/4047))
- Add pseudo-pending to commands with on-next-key callbacks ([#4062](https://github.com/helix-editor/helix/pull/4062), [#4077](https://github.com/helix-editor/helix/pull/4077))
- Add live preview to `:goto` ([#2982](https://github.com/helix-editor/helix/pull/2982))
- Show regex compilation failure in a popup ([#3049](https://github.com/helix-editor/helix/pull/3049))
- Add 'cycled to end' and 'no more matches' for search ([#3176](https://github.com/helix-editor/helix/pull/3176), [#4101](https://github.com/helix-editor/helix/pull/4101))
- Add extending behavior to tree-sitter textobjects ([#3266](https://github.com/helix-editor/helix/pull/3266))
- Add `ui.gutter.selected` option for themes ([#3303](https://github.com/helix-editor/helix/pull/3303))
- Make statusline mode names configurable ([#3311](https://github.com/helix-editor/helix/pull/3311))
- Add a statusline element for total line count ([#3960](https://github.com/helix-editor/helix/pull/3960))
- Add extending behavior to `goto_window_*` commands ([#3985](https://github.com/helix-editor/helix/pull/3985))
- Fix a panic in signature help when the preview is too large ([#4030](https://github.com/helix-editor/helix/pull/4030))
- Add command names to the command palette ([#4071](https://github.com/helix-editor/helix/pull/4071), [#4223](https://github.com/helix-editor/helix/pull/4223), 
[#4495](https://github.com/helix-editor/helix/pull/4495))
- Find the LSP workspace root from the current document's path ([#3553](https://github.com/helix-editor/helix/pull/3553))
- Add an option to skip indent-guide levels ([#3819](https://github.com/helix-editor/helix/pull/3819), [2c36e33](https://github.com/helix-editor/helix/commit/2c36e33))
- Change focus to modified docs on quit ([#3872](https://github.com/helix-editor/helix/pull/3872))
- Respond to `USR1` signal by reloading config ([#3952](https://github.com/helix-editor/helix/pull/3952))
- Exit gracefully when the close operation fails ([#4081](https://github.com/helix-editor/helix/pull/4081))
- Fix goto/view center mismatch ([#4135](https://github.com/helix-editor/helix/pull/4135))
- Highlight the current file picker document on idle-timeout ([#3172](https://github.com/helix-editor/helix/pull/3172), [a85e386](https://github.com/helix-editor/helix/commit/a85e386))
- Apply transactions to jumplist selections ([#4186](https://github.com/helix-editor/helix/pull/4186), [#4227](https://github.com/helix-editor/helix/pull/4227), 
[#4733](https://github.com/helix-editor/helix/pull/4733), [#4865](https://github.com/helix-editor/helix/pull/4865), [#4912](https://github.com/helix-editor/helix/pull/4912), 
[#4965](https://github.com/helix-editor/helix/pull/4965), [#4981](https://github.com/helix-editor/helix/pull/4981))
- Use space as a separator for fuzzy matcher ([#3969](https://github.com/helix-editor/helix/pull/3969))
- Overlay all diagnostics with highest severity on top ([#4113](https://github.com/helix-editor/helix/pull/4113))
- Avoid re-parsing unmodified tree-sitter injections ([#4146](https://github.com/helix-editor/helix/pull/4146))
- Add extending captures for indentation, re-enable python indentation ([#3382](https://github.com/helix-editor/helix/pull/3382), [3e84434](https://github.com/helix-editor/helix/commit/3e84434))
- Only allow either `--vsplit` or `--hsplit` CLI flags at once ([#4202](https://github.com/helix-editor/helix/pull/4202))
- Fix append cursor location when selection anchor is at the end of the document ([#4147](https://github.com/helix-editor/helix/pull/4147))
- Improve selection yanking message ([#4275](https://github.com/helix-editor/helix/pull/4275))
- Log failures to load tree-sitter grammars as errors ([#4315](https://github.com/helix-editor/helix/pull/4315))
- Fix rendering of lines longer than 65,536 columns ([#4172](https://github.com/helix-editor/helix/pull/4172))
- Skip searching `.git` in `global_search` ([#4334](https://github.com/helix-editor/helix/pull/4334))
- Display tree-sitter scopes in a popup ([#4337](https://github.com/helix-editor/helix/pull/4337))
- Fix deleting a word from the end of the buffer ([#4328](https://github.com/helix-editor/helix/pull/4328))
- Pretty print the syntax tree in `:tree-sitter-subtree` ([#4295](https://github.com/helix-editor/helix/pull/4295), [#4606](https://github.com/helix-editor/helix/pull/4606))
- Allow specifying suffixes for file-type detection ([#2455](https://github.com/helix-editor/helix/pull/2455), [#4414](https://github.com/helix-editor/helix/pull/4414))
- Fix multi-byte auto-pairs ([#4024](https://github.com/helix-editor/helix/pull/4024))
- Improve sort scoring for LSP code-actions and completions ([#4134](https://github.com/helix-editor/helix/pull/4134))
- Fix the handling of quotes within shellwords ([#4098](https://github.com/helix-editor/helix/pull/4098))
- Fix `delete_word_backward` and `delete_word_forward` on newlines ([#4392](https://github.com/helix-editor/helix/pull/4392))
- Fix 'no entry found for key' crash on `:write-all` ([#4384](https://github.com/helix-editor/helix/pull/4384))
- Remove lowercase requirement for tree-sitter grammars ([#4346](https://github.com/helix-editor/helix/pull/4346))
- Resolve LSP completion items on idle-timeout ([#4406](https://github.com/helix-editor/helix/pull/4406), [#4797](https://github.com/helix-editor/helix/pull/4797))
- Render diagnostics in the file picker preview ([#4324](https://github.com/helix-editor/helix/pull/4324))
- Fix terminal freezing on `shell_insert_output` ([#4156](https://github.com/helix-editor/helix/pull/4156))
- Allow use of the count in the repeat operator (`.`) ([#4450](https://github.com/helix-editor/helix/pull/4450))
- Show the current theme name on `:theme` with no arguments ([#3740](https://github.com/helix-editor/helix/pull/3740))
- Fix rendering in very large terminals ([#4318](https://github.com/helix-editor/helix/pull/4318))
- Sort LSP preselected items to the top of the completion menu ([#4480](https://github.com/helix-editor/helix/pull/4480))
- Trim braces and quotes from paths in goto-file ([#4370](https://github.com/helix-editor/helix/pull/4370))
- Prevent automatic signature help outside of insert mode ([#4456](https://github.com/helix-editor/helix/pull/4456))
- Fix freezes with external programs that process stdin and stdout concurrently ([#4180](https://github.com/helix-editor/helix/pull/4180))
- Make `scroll` aware of tabs and wide characters ([#4519](https://github.com/helix-editor/helix/pull/4519))
- Correctly handle escaping in `command_mode` completion ([#4316](https://github.com/helix-editor/helix/pull/4316), [#4587](https://github.com/helix-editor/helix/pull/4587), 
[#4632](https://github.com/helix-editor/helix/pull/4632))
- Fix `delete_char_backward` for paired characters ([#4558](https://github.com/helix-editor/helix/pull/4558))
- Fix crash from two windows editing the same document ([#4570](https://github.com/helix-editor/helix/pull/4570))
- Fix pasting from the blackhole register ([#4497](https://github.com/helix-editor/helix/pull/4497))
- Support LSP insertReplace completion items ([1312682](https://github.com/helix-editor/helix/commit/1312682))
- Dynamically resize the line number gutter width ([#3469](https://github.com/helix-editor/helix/pull/3469))
- Fix crash for unknown completion item kinds ([#4658](https://github.com/helix-editor/helix/pull/4658))
- Re-enable `format_selections` for single selection ranges ([d4f5cab](https://github.com/helix-editor/helix/commit/d4f5cab))
- Limit the number of in-progress tree-sitter query matches ([#4707](https://github.com/helix-editor/helix/pull/4707), [#4830](https://github.com/helix-editor/helix/pull/4830))
- Use the special `#` register with `increment`/`decrement` to change by range number ([#4418](https://github.com/helix-editor/helix/pull/4418))
- Add a statusline element to show number of selected chars ([#4682](https://github.com/helix-editor/helix/pull/4682))
- Add a statusline element showing global LSP diagnostic warning and error counts ([#4569](https://github.com/helix-editor/helix/pull/4569))
- Add a scrollbar to popups ([#4449](https://github.com/helix-editor/helix/pull/4449))
- Prefer shorter matches in fuzzy matcher scoring ([#4698](https://github.com/helix-editor/helix/pull/4698))
- Use key-sequence format for command palette keybinds ([#4712](https://github.com/helix-editor/helix/pull/4712))
- Remove prefix filtering from autocompletion menu ([#4578](https://github.com/helix-editor/helix/pull/4578))
- Focus on the parent buffer when closing a split ([#4766](https://github.com/helix-editor/helix/pull/4766))
- Handle language server termination ([#4797](https://github.com/helix-editor/helix/pull/4797), [#4852](https://github.com/helix-editor/helix/pull/4852))
- Allow `r`/`t`/`f` to work on tab characters ([#4817](https://github.com/helix-editor/helix/pull/4817))
- Show a preview for scratch buffers in the buffer picker ([#3454](https://github.com/helix-editor/helix/pull/3454))
- Set a limit of entries in the jumplist ([#4750](https://github.com/helix-editor/helix/pull/4750))
- Re-use shell outputs when inserting or appending shell output ([#3465](https://github.com/helix-editor/helix/pull/3465))
- Check LSP server provider capabilities ([#3554](https://github.com/helix-editor/helix/pull/3554))
- Improve tree-sitter parsing performance on files with many language layers ([#4716](https://github.com/helix-editor/helix/pull/4716))
- Move indentation to the next line when using `<ret>` on a line with only whitespace ([#4854](https://github.com/helix-editor/helix/pull/4854))
- Remove selections for closed views from all documents ([#4888](https://github.com/helix-editor/helix/pull/4888))
- Improve performance of the `:reload` command ([#4457](https://github.com/helix-editor/helix/pull/4457))
- Properly handle media keys ([#4887](https://github.com/helix-editor/helix/pull/4887))
- Support LSP diagnostic data field ([#4935](https://github.com/helix-editor/helix/pull/4935))
- Handle C-i keycode as tab ([#4961](https://github.com/helix-editor/helix/pull/4961))
- Fix view alignment for jumplist picker jumps ([#3743](https://github.com/helix-editor/helix/pull/3743))
- Use OSC52 for tmux clipboard provider ([#5027](https://github.com/helix-editor/helix/pull/5027))

Themes:

- Add `varua` ([#3610](https://github.com/helix-editor/helix/pull/3610), [#4964](https://github.com/helix-editor/helix/pull/4964))
- Update `boo_berry` ([#3653](https://github.com/helix-editor/helix/pull/3653))
- Add `rasmus` ([#3728](https://github.com/helix-editor/helix/pull/3728))
- Add `papercolor_dark` ([#3742](https://github.com/helix-editor/helix/pull/3742))
- Update `monokai_pro_spectrum` ([#3814](https://github.com/helix-editor/helix/pull/3814))
- Update `nord` ([#3792](https://github.com/helix-editor/helix/pull/3792))
- Update `fleetish` ([#3844](https://github.com/helix-editor/helix/pull/3844), [#4487](https://github.com/helix-editor/helix/pull/4487), [#4813](https://github.com/helix-editor/helix/pull/4813))
- Update `flatwhite` ([#3843](https://github.com/helix-editor/helix/pull/3843))
- Add `darcula` ([#3739](https://github.com/helix-editor/helix/pull/3739))
- Update `papercolor` ([#3938](https://github.com/helix-editor/helix/pull/3938), [#4317](https://github.com/helix-editor/helix/pull/4317))
- Add bufferline colors to multiple themes ([#3881](https://github.com/helix-editor/helix/pull/3881))
- Add `gruvbox_dark_hard` ([#3948](https://github.com/helix-editor/helix/pull/3948))
- Add `onedarker` ([#3980](https://github.com/helix-editor/helix/pull/3980), [#4060](https://github.com/helix-editor/helix/pull/4060))
- Add `dark_high_contrast` ([#3312](https://github.com/helix-editor/helix/pull/3312))
- Update `bogster` ([#4121](https://github.com/helix-editor/helix/pull/4121), [#4264](https://github.com/helix-editor/helix/pull/4264))
- Update `sonokai` ([#4089](https://github.com/helix-editor/helix/pull/4089))
- Update `ayu_*` themes ([#4140](https://github.com/helix-editor/helix/pull/4140), [#4109](https://github.com/helix-editor/helix/pull/4109), [#4662](https://github.com/helix-editor/helix/pull/4662), 
[#4764](https://github.com/helix-editor/helix/pull/4764))
- Update `everforest` ([#3998](https://github.com/helix-editor/helix/pull/3998))
- Update `monokai_pro_octagon` ([#4247](https://github.com/helix-editor/helix/pull/4247))
- Add `heisenberg` ([#4209](https://github.com/helix-editor/helix/pull/4209))
- Add `bogster_light` ([#4265](https://github.com/helix-editor/helix/pull/4265))
- Update `pop-dark` ([#4323](https://github.com/helix-editor/helix/pull/4323))
- Update `rose_pine` ([#4221](https://github.com/helix-editor/helix/pull/4221))
- Add `kanagawa` ([#4300](https://github.com/helix-editor/helix/pull/4300))
- Add `hex_steel`, `hex_toxic` and `hex_lavendar` ([#4367](https://github.com/helix-editor/helix/pull/4367), [#4990](https://github.com/helix-editor/helix/pull/4990))
- Update `tokyonight` and `tokyonight_storm` ([#4415](https://github.com/helix-editor/helix/pull/4415))
- Update `gruvbox` ([#4626](https://github.com/helix-editor/helix/pull/4626))
- Update `dark_plus` ([#4661](https://github.com/helix-editor/helix/pull/4661), [#4678](https://github.com/helix-editor/helix/pull/4678))
- Add `zenburn` ([#4613](https://github.com/helix-editor/helix/pull/4613), [#4977](https://github.com/helix-editor/helix/pull/4977))
- Update `monokai_pro` ([#4789](https://github.com/helix-editor/helix/pull/4789))
- Add `mellow` ([#4770](https://github.com/helix-editor/helix/pull/4770))
- Add `nightfox` ([#4769](https://github.com/helix-editor/helix/pull/4769), [#4966](https://github.com/helix-editor/helix/pull/4966))
- Update `doom_acario_dark` ([#4979](https://github.com/helix-editor/helix/pull/4979))
- Update `autumn` ([#4996](https://github.com/helix-editor/helix/pull/4996))
- Update `acme` ([#4999](https://github.com/helix-editor/helix/pull/4999))
- Update `nord_light` ([#4999](https://github.com/helix-editor/helix/pull/4999))
- Update `serika_*` ([#5015](https://github.com/helix-editor/helix/pull/5015))

LSP configurations:

- Switch to `openscad-lsp` for OpenScad ([#3750](https://github.com/helix-editor/helix/pull/3750))
- Support Jsonnet ([#3748](https://github.com/helix-editor/helix/pull/3748))
- Support Markdown ([#3499](https://github.com/helix-editor/helix/pull/3499))
- Support Bass ([#3771](https://github.com/helix-editor/helix/pull/3771))
- Set roots configuration for Elixir and HEEx ([#3917](https://github.com/helix-editor/helix/pull/3917), [#3959](https://github.com/helix-editor/helix/pull/3959))
- Support Purescript ([#4242](https://github.com/helix-editor/helix/pull/4242))
- Set roots configuration for Julia ([#4361](https://github.com/helix-editor/helix/pull/4361))
- Support D ([#4372](https://github.com/helix-editor/helix/pull/4372))
- Increase default language server timeout for Julia ([#4575](https://github.com/helix-editor/helix/pull/4575))
- Use ElixirLS for HEEx ([#4679](https://github.com/helix-editor/helix/pull/4679))
- Support Bicep ([#4403](https://github.com/helix-editor/helix/pull/4403))
- Switch to `nil` for Nix ([433ccef](https://github.com/helix-editor/helix/commit/433ccef))
- Support QML ([#4842](https://github.com/helix-editor/helix/pull/4842))
- Enable auto-format for CSS ([#4987](https://github.com/helix-editor/helix/pull/4987))
- Support CommonLisp ([4176769](https://github.com/helix-editor/helix/commit/4176769))

New languages:

- SML ([#3692](https://github.com/helix-editor/helix/pull/3692))
- Jsonnet ([#3714](https://github.com/helix-editor/helix/pull/3714))
- Godot resource ([#3759](https://github.com/helix-editor/helix/pull/3759))
- Astro ([#3829](https://github.com/helix-editor/helix/pull/3829))
- SSH config ([#2455](https://github.com/helix-editor/helix/pull/2455), [#4538](https://github.com/helix-editor/helix/pull/4538))
- Bass ([#3771](https://github.com/helix-editor/helix/pull/3771))
- WAT (WebAssembly text format) ([#4040](https://github.com/helix-editor/helix/pull/4040), [#4542](https://github.com/helix-editor/helix/pull/4542))
- Purescript ([#4242](https://github.com/helix-editor/helix/pull/4242))
- D ([#4372](https://github.com/helix-editor/helix/pull/4372), [#4562](https://github.com/helix-editor/helix/pull/4562))
- VHS ([#4486](https://github.com/helix-editor/helix/pull/4486))
- KDL ([#4481](https://github.com/helix-editor/helix/pull/4481))
- XML ([#4518](https://github.com/helix-editor/helix/pull/4518))
- WIT ([#4525](https://github.com/helix-editor/helix/pull/4525))
- ENV ([#4536](https://github.com/helix-editor/helix/pull/4536))
- INI ([#4538](https://github.com/helix-editor/helix/pull/4538))
- Bicep ([#4403](https://github.com/helix-editor/helix/pull/4403), [#4751](https://github.com/helix-editor/helix/pull/4751))
- QML ([#4842](https://github.com/helix-editor/helix/pull/4842))
- CommonLisp ([4176769](https://github.com/helix-editor/helix/commit/4176769))

Updated languages and queries:

- Zig ([#3621](https://github.com/helix-editor/helix/pull/3621), [#4745](https://github.com/helix-editor/helix/pull/4745))
- Rust ([#3647](https://github.com/helix-editor/helix/pull/3647), [#3729](https://github.com/helix-editor/helix/pull/3729), [#3927](https://github.com/helix-editor/helix/pull/3927), 
[#4073](https://github.com/helix-editor/helix/pull/4073), [#4510](https://github.com/helix-editor/helix/pull/4510), [#4659](https://github.com/helix-editor/helix/pull/4659), 
[#4717](https://github.com/helix-editor/helix/pull/4717))
- Solidity ([20ed8c2](https://github.com/helix-editor/helix/commit/20ed8c2))
- Fish ([#3704](https://github.com/helix-editor/helix/pull/3704))
- Elixir ([#3645](https://github.com/helix-editor/helix/pull/3645), [#4333](https://github.com/helix-editor/helix/pull/4333), [#4821](https://github.com/helix-editor/helix/pull/4821))
- Diff ([#3708](https://github.com/helix-editor/helix/pull/3708))
- Nix ([665e27f](https://github.com/helix-editor/helix/commit/665e27f), [1fe3273](https://github.com/helix-editor/helix/commit/1fe3273))
- Markdown ([#3749](https://github.com/helix-editor/helix/pull/3749), [#4078](https://github.com/helix-editor/helix/pull/4078), [#4483](https://github.com/helix-editor/helix/pull/4483), 
[#4478](https://github.com/helix-editor/helix/pull/4478))
- GDScript ([#3760](https://github.com/helix-editor/helix/pull/3760))
- JSX and TSX ([#3853](https://github.com/helix-editor/helix/pull/3853), [#3973](https://github.com/helix-editor/helix/pull/3973))
- Ruby ([#3976](https://github.com/helix-editor/helix/pull/3976), [#4601](https://github.com/helix-editor/helix/pull/4601))
- R ([#4031](https://github.com/helix-editor/helix/pull/4031))
- WGSL ([#3996](https://github.com/helix-editor/helix/pull/3996), [#4079](https://github.com/helix-editor/helix/pull/4079))
- C# ([#4118](https://github.com/helix-editor/helix/pull/4118), [#4281](https://github.com/helix-editor/helix/pull/4281), [#4213](https://github.com/helix-editor/helix/pull/4213))
- Twig ([#4176](https://github.com/helix-editor/helix/pull/4176))
- Lua ([#3552](https://github.com/helix-editor/helix/pull/3552))
- C/C++ ([#4079](https://github.com/helix-editor/helix/pull/4079), [#4278](https://github.com/helix-editor/helix/pull/4278), [#4282](https://github.com/helix-editor/helix/pull/4282))
- Cairo ([17488f1](https://github.com/helix-editor/helix/commit/17488f1), [431f9c1](https://github.com/helix-editor/helix/commit/431f9c1), 
[09a6df1](https://github.com/helix-editor/helix/commit/09a6df1))
- Rescript ([#4356](https://github.com/helix-editor/helix/pull/4356))
- Zig ([#4409](https://github.com/helix-editor/helix/pull/4409))
- Scala ([#4353](https://github.com/helix-editor/helix/pull/4353), [#4697](https://github.com/helix-editor/helix/pull/4697), [#4701](https://github.com/helix-editor/helix/pull/4701))
- LaTeX ([#4528](https://github.com/helix-editor/helix/pull/4528), [#4922](https://github.com/helix-editor/helix/pull/4922))
- SQL ([#4529](https://github.com/helix-editor/helix/pull/4529))
- Python ([#4560](https://github.com/helix-editor/helix/pull/4560))
- Bash/Zsh ([#4582](https://github.com/helix-editor/helix/pull/4582))
- Nu ([#4583](https://github.com/helix-editor/helix/pull/4583))
- Julia ([#4588](https://github.com/helix-editor/helix/pull/4588))
- Typescript ([#4703](https://github.com/helix-editor/helix/pull/4703))
- Meson ([#4572](https://github.com/helix-editor/helix/pull/4572))
- Haskell ([#4800](https://github.com/helix-editor/helix/pull/4800))
- CMake ([#4809](https://github.com/helix-editor/helix/pull/4809))
- HTML ([#4829](https://github.com/helix-editor/helix/pull/4829), [#4881](https://github.com/helix-editor/helix/pull/4881))
- Java ([#4886](https://github.com/helix-editor/helix/pull/4886))
- Go ([#4906](https://github.com/helix-editor/helix/pull/4906), [#4969](https://github.com/helix-editor/helix/pull/4969), [#5010](https://github.com/helix-editor/helix/pull/5010))
- CSS ([#4882](https://github.com/helix-editor/helix/pull/4882))
- Racket ([#4915](https://github.com/helix-editor/helix/pull/4915))
- SCSS ([#5003](https://github.com/helix-editor/helix/pull/5003))

Packaging:

- Filter relevant source files in the Nix flake ([#3657](https://github.com/helix-editor/helix/pull/3657))
- Build a binary for `aarch64-linux` in the release CI ([038a91d](https://github.com/helix-editor/helix/commit/038a91d))
- Build an AppImage for `aarch64-linux` in the release CI ([b738031](https://github.com/helix-editor/helix/commit/b738031))
- Enable CI builds for `riscv64-linux` ([#3685](https://github.com/helix-editor/helix/pull/3685))
- Support preview releases in CI ([0090a2d](https://github.com/helix-editor/helix/commit/0090a2d))
- Strip binaries built in CI ([#3780](https://github.com/helix-editor/helix/pull/3780))
- Fix the development shell for the Nix Flake on `aarch64-darwin` ([#3810](https://github.com/helix-editor/helix/pull/3810))
- Raise the MSRV and create an MSRV policy ([#3896](https://github.com/helix-editor/helix/pull/3896), [#3913](https://github.com/helix-editor/helix/pull/3913), 
[#3961](https://github.com/helix-editor/helix/pull/3961))
- Fix Fish completions for `--config` and `--log` flags ([#3912](https://github.com/helix-editor/helix/pull/3912))
- Use builtin filenames option in Bash completion ([#4648](https://github.com/helix-editor/helix/pull/4648))


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/editors/helix/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/editors/helix/PLIST \
    pkgsrc/editors/helix/cargo-depends.mk pkgsrc/editors/helix/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/editors/helix/filter.awk \
    pkgsrc/editors/helix/languages2mk.mk
cvs rdiff -u -r1.1 -r1.2 pkgsrc/editors/helix/tree-sitter-depends.mk
cvs rdiff -u -r0 -r1.1 pkgsrc/editors/helix/files/print-depends.awk
cvs rdiff -u -r1.2 -r1.3 \
    pkgsrc/editors/helix/patches/patch-helix-loader_src_grammar.rs \
    pkgsrc/editors/helix/patches/patch-helix-loader_src_lib.rs
cvs rdiff -u -r1.1 -r1.2 \
    pkgsrc/editors/helix/patches/patch-helix-term_build.rs

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/editors/helix/Makefile
diff -u pkgsrc/editors/helix/Makefile:1.7 pkgsrc/editors/helix/Makefile:1.8
--- pkgsrc/editors/helix/Makefile:1.7   Fri Nov 11 20:23:39 2022
+++ pkgsrc/editors/helix/Makefile       Wed Dec  7 17:08:38 2022
@@ -1,14 +1,12 @@
-# $NetBSD: Makefile,v 1.7 2022/11/11 20:23:39 nikita Exp $
+# $NetBSD: Makefile,v 1.8 2022/12/07 17:08:38 jperkin Exp $
 
 GITHUB_PROJECT=        helix
-DISTNAME=      22.08.1
+DISTNAME=      22.12
 PKGNAME=       ${GITHUB_PROJECT}-${DISTNAME}
 CATEGORIES=    editors
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=helix-editor/}
 DIST_SUBDIR=   ${GITHUB_PROJECT}
 
-DISTFILES+=    ${DISTNAME}.tar.gz
-
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=      https://helix-editor.com/
 COMMENT=       Modal editor inspired by kakoune / neovim
@@ -27,31 +25,42 @@ INSTALLATION_DIRS+= share/examples/helix
 
 post-extract:
        ${MKDIR} ${WRKSRC}/runtime/grammars/sources
-.for dir in ${TREESITTER_DISTFILES}
-       ${MV} ${WRKDIR}/${dir:S/.tar.gz//} ${WRKSRC}/runtime/grammars/sources/${dir:S/tree-sitter-//:C/-[^-]*$//}
+.for name rev url path in ${TS_FILES}
+       ${LN} -s ${WRKDIR}/${name}-${rev} ${WRKSRC}/runtime/grammars/sources/${path}
 .endfor
-       (cd ${WRKSRC}/runtime/grammars/sources && ${CP} -a typescript tsx)
-       (cd ${WRKSRC}/runtime/grammars/sources && ${CP} -a ocaml ocaml-interface)
-       (cd ${WRKSRC}/runtime/grammars/sources && ${CP} -a markdown markdown_inline)
-       (cd ${WRKSRC}/runtime/grammars/sources && ${MV} diff git-diff)
 
 SUBST_CLASSES+=                datadir
-SUBST_STAGE.datadir=   post-patch
+SUBST_STAGE.datadir=   pre-configure
 SUBST_MESSAGE.datadir= Fixing datadir
 SUBST_FILES.datadir=   helix-loader/src/lib.rs
 SUBST_SED.datadir+=    -e 's,%%DATADIR%%,${PREFIX}/share/helix,g'
 
+.include "../../mk/bsd.prefs.mk"
+
+post-build:
+       ${RUN} cd ${WRKSRC} && env HELIX_RUNTIME=${WRKSRC}/runtime \
+               ./target/release/hx --grammar build
+.if ${OPSYS} == "Darwin"
+       ${RUN} cd ${WRKSRC}/runtime/grammars &&                         \
+       for f in *.so; do                                               \
+               install_name_tool                                       \
+                   -id ${PREFIX}/share/helix/runtime/grammars/$${f}    \
+                   $${f};                                              \
+       done
+.endif
+
 do-install:
        ${INSTALL_PROGRAM} ${WRKSRC}/target/release/hx ${DESTDIR}${PREFIX}/bin
-
-post-install:
        cd ${WRKSRC}/runtime && ${PAX} -rw themes ${DESTDIR}${PREFIX}/share/helix/runtime/
        cd ${WRKSRC}/runtime && ${PAX} -rw queries ${DESTDIR}${PREFIX}/share/helix/runtime/
        cd ${WRKSRC}/contrib && ${PAX} -rw completion ${DESTDIR}${PREFIX}/share/examples/helix/
-       ${INSTALL_DATA} ${WRKSRC}/runtime/tutor.txt ${DESTDIR}${PREFIX}/share/helix/runtime/tutor.txt
+       ${INSTALL_DATA} ${WRKSRC}/runtime/tutor ${DESTDIR}${PREFIX}/share/helix/runtime/tutor
        ${INSTALL_LIB} ${WRKSRC}/runtime/grammars/*.so ${DESTDIR}${PREFIX}/share/helix/runtime/grammars/
 
-.include "../../editors/helix/languages2mk.mk"
+.PHONY: print-tree-sitter-depends
+print-tree-sitter-depends:
+       ${RUN}${AWK} -f ${FILESDIR}/print-depends.awk ${WRKSRC}/languages.toml
+
 .include "../../lang/rust/cargo.mk"
 .include "../../security/openssl/buildlink3.mk"
 .include "../../mk/bsd.pkg.mk"

Index: pkgsrc/editors/helix/PLIST
diff -u pkgsrc/editors/helix/PLIST:1.2 pkgsrc/editors/helix/PLIST:1.3
--- pkgsrc/editors/helix/PLIST:1.2      Fri Nov 11 20:23:39 2022
+++ pkgsrc/editors/helix/PLIST  Wed Dec  7 17:08:38 2022
@@ -1,12 +1,15 @@
-@comment $NetBSD: PLIST,v 1.2 2022/11/11 20:23:39 nikita Exp $
+@comment $NetBSD: PLIST,v 1.3 2022/12/07 17:08:38 jperkin Exp $
 bin/hx
 share/examples/helix/completion/hx.bash
 share/examples/helix/completion/hx.elv
 share/examples/helix/completion/hx.fish
 share/examples/helix/completion/hx.zsh
+share/helix/runtime/grammars/astro.so
 share/helix/runtime/grammars/awk.so
 share/helix/runtime/grammars/bash.so
+share/helix/runtime/grammars/bass.so
 share/helix/runtime/grammars/beancount.so
+share/helix/runtime/grammars/bicep.so
 share/helix/runtime/grammars/c-sharp.so
 share/helix/runtime/grammars/c.so
 share/helix/runtime/grammars/cairo.so
@@ -17,8 +20,10 @@ share/helix/runtime/grammars/cpon.so
 share/helix/runtime/grammars/cpp.so
 share/helix/runtime/grammars/css.so
 share/helix/runtime/grammars/cue.so
+share/helix/runtime/grammars/d.so
 share/helix/runtime/grammars/dart.so
 share/helix/runtime/grammars/devicetree.so
+share/helix/runtime/grammars/diff.so
 share/helix/runtime/grammars/dockerfile.so
 share/helix/runtime/grammars/dot.so
 share/helix/runtime/grammars/edoc.so
@@ -27,6 +32,7 @@ share/helix/runtime/grammars/elixir.so
 share/helix/runtime/grammars/elm.so
 share/helix/runtime/grammars/elvish.so
 share/helix/runtime/grammars/embedded-template.so
+share/helix/runtime/grammars/env.so
 share/helix/runtime/grammars/erlang.so
 share/helix/runtime/grammars/esdl.so
 share/helix/runtime/grammars/fish.so
@@ -34,13 +40,16 @@ share/helix/runtime/grammars/fortran.so
 share/helix/runtime/grammars/gdscript.so
 share/helix/runtime/grammars/git-commit.so
 share/helix/runtime/grammars/git-config.so
-share/helix/runtime/grammars/git-diff.so
 share/helix/runtime/grammars/git-rebase.so
 share/helix/runtime/grammars/gitattributes.so
 share/helix/runtime/grammars/gitignore.so
 share/helix/runtime/grammars/gleam.so
 share/helix/runtime/grammars/glsl.so
 share/helix/runtime/grammars/go.so
+share/helix/runtime/grammars/godot-resource.so
+share/helix/runtime/grammars/gomod.so
+share/helix/runtime/grammars/gotmpl.so
+share/helix/runtime/grammars/gowork.so
 share/helix/runtime/grammars/graphql.so
 share/helix/runtime/grammars/hare.so
 share/helix/runtime/grammars/haskell.so
@@ -48,11 +57,14 @@ share/helix/runtime/grammars/hcl.so
 share/helix/runtime/grammars/heex.so
 share/helix/runtime/grammars/html.so
 share/helix/runtime/grammars/iex.so
+share/helix/runtime/grammars/ini.so
 share/helix/runtime/grammars/java.so
 share/helix/runtime/grammars/javascript.so
 share/helix/runtime/grammars/jsdoc.so
 share/helix/runtime/grammars/json.so
+share/helix/runtime/grammars/jsonnet.so
 share/helix/runtime/grammars/julia.so
+share/helix/runtime/grammars/kdl.so
 share/helix/runtime/grammars/kotlin.so
 share/helix/runtime/grammars/latex.so
 share/helix/runtime/grammars/lean.so
@@ -78,6 +90,7 @@ share/helix/runtime/grammars/php.so
 share/helix/runtime/grammars/prisma.so
 share/helix/runtime/grammars/protobuf.so
 share/helix/runtime/grammars/python.so
+share/helix/runtime/grammars/qmljs.so
 share/helix/runtime/grammars/r.so
 share/helix/runtime/grammars/regex.so
 share/helix/runtime/grammars/rescript.so
@@ -87,8 +100,10 @@ share/helix/runtime/grammars/scala.so
 share/helix/runtime/grammars/scheme.so
 share/helix/runtime/grammars/scss.so
 share/helix/runtime/grammars/slint.so
+share/helix/runtime/grammars/sml.so
 share/helix/runtime/grammars/solidity.so
 share/helix/runtime/grammars/sql.so
+share/helix/runtime/grammars/sshclientconfig.so
 share/helix/runtime/grammars/svelte.so
 share/helix/runtime/grammars/swift.so
 share/helix/runtime/grammars/tablegen.so
@@ -99,20 +114,30 @@ share/helix/runtime/grammars/tsx.so
 share/helix/runtime/grammars/twig.so
 share/helix/runtime/grammars/typescript.so
 share/helix/runtime/grammars/ungrammar.so
+share/helix/runtime/grammars/v.so
 share/helix/runtime/grammars/vala.so
 share/helix/runtime/grammars/verilog.so
+share/helix/runtime/grammars/vhs.so
 share/helix/runtime/grammars/vue.so
+share/helix/runtime/grammars/wast.so
+share/helix/runtime/grammars/wat.so
 share/helix/runtime/grammars/wgsl.so
+share/helix/runtime/grammars/wit.so
 share/helix/runtime/grammars/xit.so
+share/helix/runtime/grammars/xml.so
 share/helix/runtime/grammars/yaml.so
 share/helix/runtime/grammars/zig.so
+share/helix/runtime/queries/astro/highlights.scm
+share/helix/runtime/queries/astro/injections.scm
 share/helix/runtime/queries/awk/highlights.scm
 share/helix/runtime/queries/awk/injections.scm
 share/helix/runtime/queries/awk/textobjects.scm
 share/helix/runtime/queries/bash/highlights.scm
 share/helix/runtime/queries/bash/injections.scm
+share/helix/runtime/queries/bass/highlights.scm
 share/helix/runtime/queries/beancount/folds.scm
 share/helix/runtime/queries/beancount/highlights.scm
+share/helix/runtime/queries/bicep/highlights.scm
 share/helix/runtime/queries/c-sharp/highlights.scm
 share/helix/runtime/queries/c-sharp/injections.scm
 share/helix/runtime/queries/c-sharp/textobjects.scm
@@ -129,6 +154,8 @@ share/helix/runtime/queries/cmake/indent
 share/helix/runtime/queries/cmake/injections.scm
 share/helix/runtime/queries/cmake/textobjects.scm
 share/helix/runtime/queries/comment/highlights.scm
+share/helix/runtime/queries/common-lisp/highlights.scm
+share/helix/runtime/queries/common-lisp/injections.scm
 share/helix/runtime/queries/cpon/highlights.scm
 share/helix/runtime/queries/cpon/indents.scm
 share/helix/runtime/queries/cpp/highlights.scm
@@ -138,11 +165,16 @@ share/helix/runtime/queries/cpp/textobje
 share/helix/runtime/queries/css/highlights.scm
 share/helix/runtime/queries/css/injections.scm
 share/helix/runtime/queries/cue/highlights.scm
+share/helix/runtime/queries/d/highlights.scm
+share/helix/runtime/queries/d/indents.scm
+share/helix/runtime/queries/d/injections.scm
+share/helix/runtime/queries/d/textobjects.scm
 share/helix/runtime/queries/dart/highlights.scm
 share/helix/runtime/queries/dart/indents.scm
 share/helix/runtime/queries/dart/injections.scm
 share/helix/runtime/queries/dart/locals.scm
 share/helix/runtime/queries/devicetree/highlights.scm
+share/helix/runtime/queries/diff/highlights.scm
 share/helix/runtime/queries/dockerfile/highlights.scm
 share/helix/runtime/queries/dockerfile/injections.scm
 share/helix/runtime/queries/dot/highlights.scm
@@ -159,6 +191,7 @@ share/helix/runtime/queries/eex/injectio
 share/helix/runtime/queries/ejs/highlights.scm
 share/helix/runtime/queries/ejs/injections.scm
 share/helix/runtime/queries/elixir/highlights.scm
+share/helix/runtime/queries/elixir/indents.scm
 share/helix/runtime/queries/elixir/injections.scm
 share/helix/runtime/queries/elixir/textobjects.scm
 share/helix/runtime/queries/elm/highlights.scm
@@ -167,10 +200,12 @@ share/helix/runtime/queries/elm/locals.s
 share/helix/runtime/queries/elm/tags.scm
 share/helix/runtime/queries/elvish/highlights.scm
 share/helix/runtime/queries/elvish/injections.scm
+share/helix/runtime/queries/env/highlights.scm
 share/helix/runtime/queries/erb/highlights.scm
 share/helix/runtime/queries/erb/injections.scm
 share/helix/runtime/queries/erlang/highlights.scm
 share/helix/runtime/queries/erlang/injections.scm
+share/helix/runtime/queries/erlang/locals.scm
 share/helix/runtime/queries/erlang/textobjects.scm
 share/helix/runtime/queries/esdl/highlights.scm
 share/helix/runtime/queries/fish/highlights.scm
@@ -182,11 +217,11 @@ share/helix/runtime/queries/fortran/high
 share/helix/runtime/queries/fortran/indents.scm
 share/helix/runtime/queries/gdscript/highlights.scm
 share/helix/runtime/queries/gdscript/tags.scm
+share/helix/runtime/queries/gdscript/textobjects.scm
 share/helix/runtime/queries/git-attributes/highlights.scm
 share/helix/runtime/queries/git-commit/highlights.scm
 share/helix/runtime/queries/git-commit/injections.scm
 share/helix/runtime/queries/git-config/highlights.scm
-share/helix/runtime/queries/git-diff/highlights.scm
 share/helix/runtime/queries/git-ignore/highlights.scm
 share/helix/runtime/queries/git-rebase/highlights.scm
 share/helix/runtime/queries/git-rebase/injections.scm
@@ -205,6 +240,7 @@ share/helix/runtime/queries/go/injection
 share/helix/runtime/queries/go/locals.scm
 share/helix/runtime/queries/go/tags.scm
 share/helix/runtime/queries/go/textobjects.scm
+share/helix/runtime/queries/godot-resource/highlights.scm
 share/helix/runtime/queries/gomod/highlights.scm
 share/helix/runtime/queries/gomod/injections.scm
 share/helix/runtime/queries/gotmpl/highlights.scm
@@ -228,8 +264,10 @@ share/helix/runtime/queries/html/highlig
 share/helix/runtime/queries/html/injections.scm
 share/helix/runtime/queries/iex/highlights.scm
 share/helix/runtime/queries/iex/injections.scm
+share/helix/runtime/queries/ini/highlights.scm
 share/helix/runtime/queries/java/highlights.scm
 share/helix/runtime/queries/java/injections.scm
+share/helix/runtime/queries/java/textobjects.scm
 share/helix/runtime/queries/javascript/highlights.scm
 share/helix/runtime/queries/javascript/indents.scm
 share/helix/runtime/queries/javascript/injections.scm
@@ -240,6 +278,7 @@ share/helix/runtime/queries/jsdoc/highli
 share/helix/runtime/queries/jsdoc/injections.scm
 share/helix/runtime/queries/json/highlights.scm
 share/helix/runtime/queries/json/indents.scm
+share/helix/runtime/queries/jsonnet/highlights.scm
 share/helix/runtime/queries/jsx/highlights.scm
 share/helix/runtime/queries/jsx/indents.scm
 share/helix/runtime/queries/jsx/injections.scm
@@ -249,6 +288,7 @@ share/helix/runtime/queries/julia/folds.
 share/helix/runtime/queries/julia/highlights.scm
 share/helix/runtime/queries/julia/injections.scm
 share/helix/runtime/queries/julia/locals.scm
+share/helix/runtime/queries/kdl/highlights.scm
 share/helix/runtime/queries/kotlin/folds.scm
 share/helix/runtime/queries/kotlin/highlights.scm
 share/helix/runtime/queries/kotlin/injections.scm
@@ -274,9 +314,11 @@ share/helix/runtime/queries/llvm/indents
 share/helix/runtime/queries/llvm/injections.scm
 share/helix/runtime/queries/llvm/locals.scm
 share/helix/runtime/queries/llvm/textobjects.scm
+share/helix/runtime/queries/lua/folds.scm
 share/helix/runtime/queries/lua/highlights.scm
 share/helix/runtime/queries/lua/indents.scm
 share/helix/runtime/queries/lua/injections.scm
+share/helix/runtime/queries/lua/textobjects.scm
 share/helix/runtime/queries/make/highlights.scm
 share/helix/runtime/queries/make/injections.scm
 share/helix/runtime/queries/markdown.inline/highlights.scm
@@ -288,6 +330,7 @@ share/helix/runtime/queries/meson/indent
 share/helix/runtime/queries/nickel/highlights.scm
 share/helix/runtime/queries/nickel/indents.scm
 share/helix/runtime/queries/nix/highlights.scm
+share/helix/runtime/queries/nix/injections.scm
 share/helix/runtime/queries/nu/folds.scm
 share/helix/runtime/queries/nu/highlights.scm
 share/helix/runtime/queries/nu/injections.scm
@@ -318,17 +361,27 @@ share/helix/runtime/queries/prisma/highl
 share/helix/runtime/queries/protobuf/highlights.scm
 share/helix/runtime/queries/protobuf/indents.scm
 share/helix/runtime/queries/protobuf/injections.scm
+share/helix/runtime/queries/purescript/highlights.scm
+share/helix/runtime/queries/purescript/injections.scm
+share/helix/runtime/queries/purescript/locals.scm
 share/helix/runtime/queries/python/highlights.scm
-share/helix/runtime/queries/python/indents.scm_
+share/helix/runtime/queries/python/indents.scm
 share/helix/runtime/queries/python/injections.scm
 share/helix/runtime/queries/python/locals.scm
 share/helix/runtime/queries/python/tags.scm
 share/helix/runtime/queries/python/textobjects.scm
+share/helix/runtime/queries/qml/highlights.scm
+share/helix/runtime/queries/qml/indents.scm
+share/helix/runtime/queries/qml/injections.scm
 share/helix/runtime/queries/r/highlights.scm
+share/helix/runtime/queries/r/injections.scm
 share/helix/runtime/queries/r/locals.scm
+share/helix/runtime/queries/racket/highlights.scm
+share/helix/runtime/queries/racket/injections.scm
 share/helix/runtime/queries/regex/highlights.scm
 share/helix/runtime/queries/rescript/highlights.scm
 share/helix/runtime/queries/rescript/injections.scm
+share/helix/runtime/queries/rescript/locals.scm
 share/helix/runtime/queries/rescript/textobjects.scm
 share/helix/runtime/queries/rmarkdown/highlights.scm
 share/helix/runtime/queries/rmarkdown/indents.scm
@@ -357,7 +410,9 @@ share/helix/runtime/queries/scss/injecti
 share/helix/runtime/queries/slint/highlights.scm
 share/helix/runtime/queries/slint/indents.scm
 share/helix/runtime/queries/slint/locals.scm
+share/helix/runtime/queries/sml/highlights.scm
 share/helix/runtime/queries/solidity/highlights.scm
+share/helix/runtime/queries/solidity/locals.scm
 share/helix/runtime/queries/sql/highlights.scm
 share/helix/runtime/queries/sshclientconfig/highlights.scm
 share/helix/runtime/queries/starlark/highlights.scm
@@ -396,17 +451,26 @@ share/helix/runtime/queries/verilog/high
 share/helix/runtime/queries/verilog/injections.scm
 share/helix/runtime/queries/verilog/locals.scm
 share/helix/runtime/queries/verilog/textobjects.scm
+share/helix/runtime/queries/vhs/highlights.scm
 share/helix/runtime/queries/vue/highlights.scm
 share/helix/runtime/queries/vue/injections.scm
+share/helix/runtime/queries/wast/highlights.scm
+share/helix/runtime/queries/wat/highlights.scm
 share/helix/runtime/queries/wgsl/highlights.scm
 share/helix/runtime/queries/wgsl/injections.scm
+share/helix/runtime/queries/wit/highlights.scm
+share/helix/runtime/queries/wit/indents.scm
 share/helix/runtime/queries/xit/highlights.scm
+share/helix/runtime/queries/xml/highlights.scm
+share/helix/runtime/queries/xml/indents.scm
+share/helix/runtime/queries/xml/injections.scm
 share/helix/runtime/queries/yaml/highlights.scm
 share/helix/runtime/queries/yaml/indents.scm
 share/helix/runtime/queries/yaml/injections.scm
 share/helix/runtime/queries/zig/highlights.scm
 share/helix/runtime/queries/zig/indents.scm
 share/helix/runtime/queries/zig/injections.scm
+share/helix/runtime/queries/zig/textobjects.scm
 share/helix/runtime/themes/README.md
 share/helix/runtime/themes/acme.toml
 share/helix/runtime/themes/autumn.toml
@@ -419,11 +483,14 @@ share/helix/runtime/themes/base16_defaul
 share/helix/runtime/themes/base16_terminal.toml
 share/helix/runtime/themes/base16_transparent.toml
 share/helix/runtime/themes/bogster.toml
+share/helix/runtime/themes/bogster_light.toml
 share/helix/runtime/themes/boo_berry.toml
 share/helix/runtime/themes/catppuccin_frappe.toml
 share/helix/runtime/themes/catppuccin_latte.toml
 share/helix/runtime/themes/catppuccin_macchiato.toml
 share/helix/runtime/themes/catppuccin_mocha.toml
+share/helix/runtime/themes/darcula.toml
+share/helix/runtime/themes/dark_high_contrast.toml
 share/helix/runtime/themes/dark_plus.toml
 share/helix/runtime/themes/doom_acario_dark.toml
 share/helix/runtime/themes/dracula.toml
@@ -432,11 +499,18 @@ share/helix/runtime/themes/emacs.toml
 share/helix/runtime/themes/everforest_dark.toml
 share/helix/runtime/themes/everforest_light.toml
 share/helix/runtime/themes/flatwhite.toml
-share/helix/runtime/themes/fleetish.toml
+share/helix/runtime/themes/fleet_dark.toml
 share/helix/runtime/themes/gruvbox.toml
+share/helix/runtime/themes/gruvbox_dark_hard.toml
 share/helix/runtime/themes/gruvbox_light.toml
+share/helix/runtime/themes/heisenberg.toml
+share/helix/runtime/themes/hex_lavender.toml
+share/helix/runtime/themes/hex_steel.toml
+share/helix/runtime/themes/hex_toxic.toml
 share/helix/runtime/themes/ingrid.toml
+share/helix/runtime/themes/kanagawa.toml
 share/helix/runtime/themes/meliora.toml
+share/helix/runtime/themes/mellow.toml
 share/helix/runtime/themes/monokai.toml
 share/helix/runtime/themes/monokai_pro.toml
 share/helix/runtime/themes/monokai_pro_machine.toml
@@ -444,15 +518,19 @@ share/helix/runtime/themes/monokai_pro_o
 share/helix/runtime/themes/monokai_pro_ristretto.toml
 share/helix/runtime/themes/monokai_pro_spectrum.toml
 share/helix/runtime/themes/night_owl.toml
+share/helix/runtime/themes/nightfox.toml
 share/helix/runtime/themes/noctis.toml
 share/helix/runtime/themes/noctis_bordo.toml
 share/helix/runtime/themes/nord.toml
 share/helix/runtime/themes/nord_light.toml
 share/helix/runtime/themes/onedark.toml
+share/helix/runtime/themes/onedarker.toml
 share/helix/runtime/themes/onelight.toml
+share/helix/runtime/themes/papercolor-dark.toml
 share/helix/runtime/themes/papercolor-light.toml
 share/helix/runtime/themes/penumbra+.toml
 share/helix/runtime/themes/pop-dark.toml
+share/helix/runtime/themes/rasmus.toml
 share/helix/runtime/themes/rose_pine.toml
 share/helix/runtime/themes/rose_pine_dawn.toml
 share/helix/runtime/themes/rose_pine_moon.toml
@@ -465,4 +543,6 @@ share/helix/runtime/themes/sonokai.toml
 share/helix/runtime/themes/spacebones_light.toml
 share/helix/runtime/themes/tokyonight.toml
 share/helix/runtime/themes/tokyonight_storm.toml
-share/helix/runtime/tutor.txt
+share/helix/runtime/themes/varua.toml
+share/helix/runtime/themes/zenburn.toml
+share/helix/runtime/tutor
Index: pkgsrc/editors/helix/cargo-depends.mk
diff -u pkgsrc/editors/helix/cargo-depends.mk:1.2 pkgsrc/editors/helix/cargo-depends.mk:1.3
--- pkgsrc/editors/helix/cargo-depends.mk:1.2   Fri Nov 11 20:23:39 2022
+++ pkgsrc/editors/helix/cargo-depends.mk       Wed Dec  7 17:08:38 2022
@@ -1,27 +1,47 @@
-# $NetBSD: cargo-depends.mk,v 1.2 2022/11/11 20:23:39 nikita Exp $
+# $NetBSD: cargo-depends.mk,v 1.3 2022/12/07 17:08:38 jperkin Exp $
 
-CARGO_CRATE_DEPENDS+=  aho-corasick-0.7.18
+CARGO_CRATE_DEPENDS+=  adler-1.0.2
+CARGO_CRATE_DEPENDS+=  ahash-0.7.6
+CARGO_CRATE_DEPENDS+=  ahash-0.8.2
+CARGO_CRATE_DEPENDS+=  aho-corasick-0.7.20
 CARGO_CRATE_DEPENDS+=  android_system_properties-0.1.5
-CARGO_CRATE_DEPENDS+=  anyhow-1.0.63
+CARGO_CRATE_DEPENDS+=  anyhow-1.0.66
 CARGO_CRATE_DEPENDS+=  arc-swap-1.5.1
+CARGO_CRATE_DEPENDS+=  atoi-1.0.0
 CARGO_CRATE_DEPENDS+=  autocfg-1.1.0
 CARGO_CRATE_DEPENDS+=  bitflags-1.3.2
 CARGO_CRATE_DEPENDS+=  bstr-0.2.17
-CARGO_CRATE_DEPENDS+=  bumpalo-3.11.0
+CARGO_CRATE_DEPENDS+=  bstr-1.0.1
+CARGO_CRATE_DEPENDS+=  btoi-0.4.2
+CARGO_CRATE_DEPENDS+=  bumpalo-3.11.1
+CARGO_CRATE_DEPENDS+=  byte-unit-4.0.17
 CARGO_CRATE_DEPENDS+=  bytecount-0.6.3
-CARGO_CRATE_DEPENDS+=  bytes-1.2.1
+CARGO_CRATE_DEPENDS+=  bytes-1.3.0
+CARGO_CRATE_DEPENDS+=  bytesize-1.1.0
 CARGO_CRATE_DEPENDS+=  cassowary-0.3.0
-CARGO_CRATE_DEPENDS+=  cc-1.0.73
+CARGO_CRATE_DEPENDS+=  castaway-0.2.2
+CARGO_CRATE_DEPENDS+=  cc-1.0.77
 CARGO_CRATE_DEPENDS+=  cfg-if-1.0.0
 CARGO_CRATE_DEPENDS+=  chardetng-0.1.17
-CARGO_CRATE_DEPENDS+=  chrono-0.4.22
+CARGO_CRATE_DEPENDS+=  chrono-0.4.23
 CARGO_CRATE_DEPENDS+=  clipboard-win-4.4.2
+CARGO_CRATE_DEPENDS+=  clru-0.5.0
+CARGO_CRATE_DEPENDS+=  codespan-reporting-0.11.1
+CARGO_CRATE_DEPENDS+=  compact_str-0.6.1
 CARGO_CRATE_DEPENDS+=  content_inspector-0.2.4
 CARGO_CRATE_DEPENDS+=  core-foundation-sys-0.8.3
-CARGO_CRATE_DEPENDS+=  crossbeam-utils-0.8.11
+CARGO_CRATE_DEPENDS+=  crc32fast-1.3.2
+CARGO_CRATE_DEPENDS+=  crossbeam-utils-0.8.14
 CARGO_CRATE_DEPENDS+=  crossterm-0.25.0
 CARGO_CRATE_DEPENDS+=  crossterm_winapi-0.9.0
+CARGO_CRATE_DEPENDS+=  cxx-1.0.82
+CARGO_CRATE_DEPENDS+=  cxx-build-1.0.82
+CARGO_CRATE_DEPENDS+=  cxxbridge-flags-1.0.82
+CARGO_CRATE_DEPENDS+=  cxxbridge-macro-1.0.82
+CARGO_CRATE_DEPENDS+=  dashmap-5.4.0
+CARGO_CRATE_DEPENDS+=  dirs-4.0.0
 CARGO_CRATE_DEPENDS+=  dirs-next-2.0.0
+CARGO_CRATE_DEPENDS+=  dirs-sys-0.3.7
 CARGO_CRATE_DEPENDS+=  dirs-sys-next-0.1.2
 CARGO_CRATE_DEPENDS+=  either-1.8.0
 CARGO_CRATE_DEPENDS+=  encoding_rs-0.8.31
@@ -30,119 +50,188 @@ CARGO_CRATE_DEPENDS+=     error-code-2.3.1
 CARGO_CRATE_DEPENDS+=  etcetera-0.4.0
 CARGO_CRATE_DEPENDS+=  fastrand-1.8.0
 CARGO_CRATE_DEPENDS+=  fern-0.6.1
+CARGO_CRATE_DEPENDS+=  filetime-0.2.18
+CARGO_CRATE_DEPENDS+=  flate2-1.0.25
 CARGO_CRATE_DEPENDS+=  fnv-1.0.7
-CARGO_CRATE_DEPENDS+=  form_urlencoded-1.0.1
-CARGO_CRATE_DEPENDS+=  futures-core-0.3.24
-CARGO_CRATE_DEPENDS+=  futures-executor-0.3.24
-CARGO_CRATE_DEPENDS+=  futures-task-0.3.24
-CARGO_CRATE_DEPENDS+=  futures-util-0.3.24
+CARGO_CRATE_DEPENDS+=  form_urlencoded-1.1.0
+CARGO_CRATE_DEPENDS+=  futures-core-0.3.25
+CARGO_CRATE_DEPENDS+=  futures-executor-0.3.25
+CARGO_CRATE_DEPENDS+=  futures-task-0.3.25
+CARGO_CRATE_DEPENDS+=  futures-util-0.3.25
 CARGO_CRATE_DEPENDS+=  fuzzy-matcher-0.3.7
-CARGO_CRATE_DEPENDS+=  getrandom-0.2.7
+CARGO_CRATE_DEPENDS+=  getrandom-0.2.8
+CARGO_CRATE_DEPENDS+=  git-actor-0.14.1
+CARGO_CRATE_DEPENDS+=  git-attributes-0.6.0
+CARGO_CRATE_DEPENDS+=  git-bitmap-0.2.0
+CARGO_CRATE_DEPENDS+=  git-chunk-0.4.0
+CARGO_CRATE_DEPENDS+=  git-command-0.2.0
+CARGO_CRATE_DEPENDS+=  git-config-0.12.0
+CARGO_CRATE_DEPENDS+=  git-config-value-0.9.0
+CARGO_CRATE_DEPENDS+=  git-credentials-0.7.0
+CARGO_CRATE_DEPENDS+=  git-date-0.3.0
+CARGO_CRATE_DEPENDS+=  git-diff-0.23.0
+CARGO_CRATE_DEPENDS+=  git-discover-0.9.0
+CARGO_CRATE_DEPENDS+=  git-features-0.24.1
+CARGO_CRATE_DEPENDS+=  git-glob-0.5.0
+CARGO_CRATE_DEPENDS+=  git-hash-0.10.1
+CARGO_CRATE_DEPENDS+=  git-index-0.9.1
+CARGO_CRATE_DEPENDS+=  git-lock-3.0.0
+CARGO_CRATE_DEPENDS+=  git-mailmap-0.6.0
+CARGO_CRATE_DEPENDS+=  git-object-0.23.0
+CARGO_CRATE_DEPENDS+=  git-odb-0.37.0
+CARGO_CRATE_DEPENDS+=  git-pack-0.27.0
+CARGO_CRATE_DEPENDS+=  git-path-0.6.0
+CARGO_CRATE_DEPENDS+=  git-prompt-0.2.0
+CARGO_CRATE_DEPENDS+=  git-quote-0.4.0
+CARGO_CRATE_DEPENDS+=  git-ref-0.20.0
+CARGO_CRATE_DEPENDS+=  git-refspec-0.4.0
+CARGO_CRATE_DEPENDS+=  git-repository-0.29.0
+CARGO_CRATE_DEPENDS+=  git-revision-0.7.0
+CARGO_CRATE_DEPENDS+=  git-sec-0.5.0
+CARGO_CRATE_DEPENDS+=  git-tempfile-3.0.0
+CARGO_CRATE_DEPENDS+=  git-traverse-0.19.0
+CARGO_CRATE_DEPENDS+=  git-url-0.11.0
+CARGO_CRATE_DEPENDS+=  git-validate-0.7.0
+CARGO_CRATE_DEPENDS+=  git-worktree-0.9.0
 CARGO_CRATE_DEPENDS+=  globset-0.4.9
 CARGO_CRATE_DEPENDS+=  grep-matcher-0.1.5
 CARGO_CRATE_DEPENDS+=  grep-regex-0.1.10
 CARGO_CRATE_DEPENDS+=  grep-searcher-0.1.10
+CARGO_CRATE_DEPENDS+=  hash_hasher-2.0.3
+CARGO_CRATE_DEPENDS+=  hashbrown-0.12.3
+CARGO_CRATE_DEPENDS+=  hashbrown-0.13.1
 CARGO_CRATE_DEPENDS+=  hermit-abi-0.1.19
-CARGO_CRATE_DEPENDS+=  iana-time-zone-0.1.47
-CARGO_CRATE_DEPENDS+=  idna-0.2.3
+CARGO_CRATE_DEPENDS+=  hex-0.4.3
+CARGO_CRATE_DEPENDS+=  home-0.5.4
+CARGO_CRATE_DEPENDS+=  human_format-1.0.3
+CARGO_CRATE_DEPENDS+=  iana-time-zone-0.1.53
+CARGO_CRATE_DEPENDS+=  iana-time-zone-haiku-0.1.1
+CARGO_CRATE_DEPENDS+=  idna-0.3.0
 CARGO_CRATE_DEPENDS+=  ignore-0.4.18
+CARGO_CRATE_DEPENDS+=  imara-diff-0.1.5
 CARGO_CRATE_DEPENDS+=  indoc-1.0.7
 CARGO_CRATE_DEPENDS+=  instant-0.1.12
-CARGO_CRATE_DEPENDS+=  itoa-1.0.3
-CARGO_CRATE_DEPENDS+=  js-sys-0.3.59
+CARGO_CRATE_DEPENDS+=  io-close-0.3.7
+CARGO_CRATE_DEPENDS+=  itoa-1.0.4
+CARGO_CRATE_DEPENDS+=  js-sys-0.3.60
 CARGO_CRATE_DEPENDS+=  lazy_static-1.4.0
-CARGO_CRATE_DEPENDS+=  libc-0.2.132
-CARGO_CRATE_DEPENDS+=  libloading-0.7.3
-CARGO_CRATE_DEPENDS+=  lock_api-0.4.8
+CARGO_CRATE_DEPENDS+=  libc-0.2.137
+CARGO_CRATE_DEPENDS+=  libloading-0.7.4
+CARGO_CRATE_DEPENDS+=  link-cplusplus-1.0.7
+CARGO_CRATE_DEPENDS+=  lock_api-0.4.9
 CARGO_CRATE_DEPENDS+=  log-0.4.17
-CARGO_CRATE_DEPENDS+=  lsp-types-0.93.1
-CARGO_CRATE_DEPENDS+=  matches-0.1.9
+CARGO_CRATE_DEPENDS+=  lsp-types-0.93.2
 CARGO_CRATE_DEPENDS+=  memchr-2.5.0
-CARGO_CRATE_DEPENDS+=  memmap2-0.5.7
-CARGO_CRATE_DEPENDS+=  mio-0.8.4
+CARGO_CRATE_DEPENDS+=  memmap2-0.5.8
+CARGO_CRATE_DEPENDS+=  minimal-lexical-0.2.1
+CARGO_CRATE_DEPENDS+=  miniz_oxide-0.6.2
+CARGO_CRATE_DEPENDS+=  mio-0.8.5
+CARGO_CRATE_DEPENDS+=  nix-0.25.0
+CARGO_CRATE_DEPENDS+=  nom-7.1.1
 CARGO_CRATE_DEPENDS+=  num-integer-0.1.45
 CARGO_CRATE_DEPENDS+=  num-traits-0.2.15
-CARGO_CRATE_DEPENDS+=  num_cpus-1.13.1
-CARGO_CRATE_DEPENDS+=  once_cell-1.13.1
+CARGO_CRATE_DEPENDS+=  num_cpus-1.14.0
+CARGO_CRATE_DEPENDS+=  num_threads-0.1.6
+CARGO_CRATE_DEPENDS+=  once_cell-1.16.0
 CARGO_CRATE_DEPENDS+=  parking_lot-0.12.1
-CARGO_CRATE_DEPENDS+=  parking_lot_core-0.9.3
-CARGO_CRATE_DEPENDS+=  percent-encoding-2.1.0
+CARGO_CRATE_DEPENDS+=  parking_lot_core-0.9.4
+CARGO_CRATE_DEPENDS+=  percent-encoding-2.2.0
 CARGO_CRATE_DEPENDS+=  pin-project-lite-0.2.9
 CARGO_CRATE_DEPENDS+=  pin-utils-0.1.0
-CARGO_CRATE_DEPENDS+=  proc-macro2-1.0.43
+CARGO_CRATE_DEPENDS+=  proc-macro2-1.0.47
+CARGO_CRATE_DEPENDS+=  prodash-21.1.0
 CARGO_CRATE_DEPENDS+=  pulldown-cmark-0.9.2
+CARGO_CRATE_DEPENDS+=  quick-error-2.0.1
 CARGO_CRATE_DEPENDS+=  quickcheck-1.0.3
 CARGO_CRATE_DEPENDS+=  quote-1.0.21
 CARGO_CRATE_DEPENDS+=  rand-0.8.5
-CARGO_CRATE_DEPENDS+=  rand_core-0.6.3
+CARGO_CRATE_DEPENDS+=  rand_core-0.6.4
 CARGO_CRATE_DEPENDS+=  redox_syscall-0.2.16
 CARGO_CRATE_DEPENDS+=  redox_users-0.4.3
-CARGO_CRATE_DEPENDS+=  regex-1.6.0
+CARGO_CRATE_DEPENDS+=  regex-1.7.0
 CARGO_CRATE_DEPENDS+=  regex-automata-0.1.10
-CARGO_CRATE_DEPENDS+=  regex-syntax-0.6.27
+CARGO_CRATE_DEPENDS+=  regex-syntax-0.6.28
 CARGO_CRATE_DEPENDS+=  remove_dir_all-0.5.3
-CARGO_CRATE_DEPENDS+=  retain_mut-0.1.9
-CARGO_CRATE_DEPENDS+=  ropey-1.5.0
+CARGO_CRATE_DEPENDS+=  ropey-1.5.1-alpha
+CARGO_CRATE_DEPENDS+=  rustversion-1.0.9
 CARGO_CRATE_DEPENDS+=  ryu-1.0.11
 CARGO_CRATE_DEPENDS+=  same-file-1.0.6
 CARGO_CRATE_DEPENDS+=  scopeguard-1.1.0
-CARGO_CRATE_DEPENDS+=  serde-1.0.144
-CARGO_CRATE_DEPENDS+=  serde_derive-1.0.144
-CARGO_CRATE_DEPENDS+=  serde_json-1.0.85
+CARGO_CRATE_DEPENDS+=  scratch-1.0.2
+CARGO_CRATE_DEPENDS+=  serde-1.0.149
+CARGO_CRATE_DEPENDS+=  serde_derive-1.0.149
+CARGO_CRATE_DEPENDS+=  serde_json-1.0.89
 CARGO_CRATE_DEPENDS+=  serde_repr-0.1.9
+CARGO_CRATE_DEPENDS+=  sha1_smol-1.0.0
 CARGO_CRATE_DEPENDS+=  signal-hook-0.3.14
 CARGO_CRATE_DEPENDS+=  signal-hook-mio-0.2.3
 CARGO_CRATE_DEPENDS+=  signal-hook-registry-1.4.0
 CARGO_CRATE_DEPENDS+=  signal-hook-tokio-0.3.1
-CARGO_CRATE_DEPENDS+=  similar-2.2.0
 CARGO_CRATE_DEPENDS+=  slab-0.4.7
 CARGO_CRATE_DEPENDS+=  slotmap-1.0.6
-CARGO_CRATE_DEPENDS+=  smallvec-1.9.0
+CARGO_CRATE_DEPENDS+=  smallvec-1.10.0
 CARGO_CRATE_DEPENDS+=  smartstring-1.0.1
 CARGO_CRATE_DEPENDS+=  smawk-0.3.1
 CARGO_CRATE_DEPENDS+=  socket2-0.4.7
 CARGO_CRATE_DEPENDS+=  static_assertions-1.1.0
 CARGO_CRATE_DEPENDS+=  str-buf-1.0.6
 CARGO_CRATE_DEPENDS+=  str_indices-0.4.0
-CARGO_CRATE_DEPENDS+=  syn-1.0.99
+CARGO_CRATE_DEPENDS+=  syn-1.0.104
 CARGO_CRATE_DEPENDS+=  tempfile-3.3.0
-CARGO_CRATE_DEPENDS+=  textwrap-0.15.0
-CARGO_CRATE_DEPENDS+=  thiserror-1.0.33
-CARGO_CRATE_DEPENDS+=  thiserror-impl-1.0.33
+CARGO_CRATE_DEPENDS+=  termcolor-1.1.3
+CARGO_CRATE_DEPENDS+=  termini-0.1.4
+CARGO_CRATE_DEPENDS+=  textwrap-0.16.0
+CARGO_CRATE_DEPENDS+=  thiserror-1.0.37
+CARGO_CRATE_DEPENDS+=  thiserror-impl-1.0.37
 CARGO_CRATE_DEPENDS+=  thread_local-1.1.4
 CARGO_CRATE_DEPENDS+=  threadpool-1.8.1
+CARGO_CRATE_DEPENDS+=  time-0.3.17
+CARGO_CRATE_DEPENDS+=  time-core-0.1.0
+CARGO_CRATE_DEPENDS+=  time-macros-0.2.6
 CARGO_CRATE_DEPENDS+=  tinyvec-1.6.0
 CARGO_CRATE_DEPENDS+=  tinyvec_macros-0.1.0
-CARGO_CRATE_DEPENDS+=  tokio-1.20.1
+CARGO_CRATE_DEPENDS+=  tokio-1.22.0
 CARGO_CRATE_DEPENDS+=  tokio-macros-1.8.0
-CARGO_CRATE_DEPENDS+=  tokio-stream-0.1.9
+CARGO_CRATE_DEPENDS+=  tokio-stream-0.1.11
 CARGO_CRATE_DEPENDS+=  toml-0.5.9
-CARGO_CRATE_DEPENDS+=  tree-sitter-0.20.8
+CARGO_CRATE_DEPENDS+=  tree-sitter-0.20.9
 CARGO_CRATE_DEPENDS+=  unicase-2.6.0
 CARGO_CRATE_DEPENDS+=  unicode-bidi-0.3.8
-CARGO_CRATE_DEPENDS+=  unicode-general-category-0.5.1
-CARGO_CRATE_DEPENDS+=  unicode-ident-1.0.3
-CARGO_CRATE_DEPENDS+=  unicode-linebreak-0.1.2
-CARGO_CRATE_DEPENDS+=  unicode-normalization-0.1.21
-CARGO_CRATE_DEPENDS+=  unicode-segmentation-1.9.0
-CARGO_CRATE_DEPENDS+=  unicode-width-0.1.9
-CARGO_CRATE_DEPENDS+=  url-2.2.2
+CARGO_CRATE_DEPENDS+=  unicode-bom-1.1.4
+CARGO_CRATE_DEPENDS+=  unicode-general-category-0.6.0
+CARGO_CRATE_DEPENDS+=  unicode-ident-1.0.5
+CARGO_CRATE_DEPENDS+=  unicode-linebreak-0.1.4
+CARGO_CRATE_DEPENDS+=  unicode-normalization-0.1.22
+CARGO_CRATE_DEPENDS+=  unicode-segmentation-1.10.0
+CARGO_CRATE_DEPENDS+=  unicode-width-0.1.10
+CARGO_CRATE_DEPENDS+=  url-2.3.1
+CARGO_CRATE_DEPENDS+=  utf8-width-0.1.6
 CARGO_CRATE_DEPENDS+=  version_check-0.9.4
 CARGO_CRATE_DEPENDS+=  walkdir-2.3.2
 CARGO_CRATE_DEPENDS+=  wasi-0.11.0+wasi-snapshot-preview1
-CARGO_CRATE_DEPENDS+=  wasm-bindgen-0.2.82
-CARGO_CRATE_DEPENDS+=  wasm-bindgen-backend-0.2.82
-CARGO_CRATE_DEPENDS+=  wasm-bindgen-macro-0.2.82
-CARGO_CRATE_DEPENDS+=  wasm-bindgen-macro-support-0.2.82
-CARGO_CRATE_DEPENDS+=  wasm-bindgen-shared-0.2.82
+CARGO_CRATE_DEPENDS+=  wasm-bindgen-0.2.83
+CARGO_CRATE_DEPENDS+=  wasm-bindgen-backend-0.2.83
+CARGO_CRATE_DEPENDS+=  wasm-bindgen-macro-0.2.83
+CARGO_CRATE_DEPENDS+=  wasm-bindgen-macro-support-0.2.83
+CARGO_CRATE_DEPENDS+=  wasm-bindgen-shared-0.2.83
 CARGO_CRATE_DEPENDS+=  which-4.3.0
 CARGO_CRATE_DEPENDS+=  winapi-0.3.9
 CARGO_CRATE_DEPENDS+=  winapi-i686-pc-windows-gnu-0.4.0
 CARGO_CRATE_DEPENDS+=  winapi-util-0.1.5
 CARGO_CRATE_DEPENDS+=  winapi-x86_64-pc-windows-gnu-0.4.0
-CARGO_CRATE_DEPENDS+=  windows-sys-0.36.1
-CARGO_CRATE_DEPENDS+=  windows_aarch64_msvc-0.36.1
-CARGO_CRATE_DEPENDS+=  windows_i686_gnu-0.36.1
-CARGO_CRATE_DEPENDS+=  windows_i686_msvc-0.36.1
-CARGO_CRATE_DEPENDS+=  windows_x86_64_gnu-0.36.1
-CARGO_CRATE_DEPENDS+=  windows_x86_64_msvc-0.36.1
+CARGO_CRATE_DEPENDS+=  windows-0.40.0
+CARGO_CRATE_DEPENDS+=  windows-sys-0.42.0
+CARGO_CRATE_DEPENDS+=  windows_aarch64_gnullvm-0.40.0
+CARGO_CRATE_DEPENDS+=  windows_aarch64_gnullvm-0.42.0
+CARGO_CRATE_DEPENDS+=  windows_aarch64_msvc-0.40.0
+CARGO_CRATE_DEPENDS+=  windows_aarch64_msvc-0.42.0
+CARGO_CRATE_DEPENDS+=  windows_i686_gnu-0.40.0
+CARGO_CRATE_DEPENDS+=  windows_i686_gnu-0.42.0
+CARGO_CRATE_DEPENDS+=  windows_i686_msvc-0.40.0
+CARGO_CRATE_DEPENDS+=  windows_i686_msvc-0.42.0
+CARGO_CRATE_DEPENDS+=  windows_x86_64_gnu-0.40.0
+CARGO_CRATE_DEPENDS+=  windows_x86_64_gnu-0.42.0
+CARGO_CRATE_DEPENDS+=  windows_x86_64_gnullvm-0.40.0
+CARGO_CRATE_DEPENDS+=  windows_x86_64_gnullvm-0.42.0
+CARGO_CRATE_DEPENDS+=  windows_x86_64_msvc-0.40.0
+CARGO_CRATE_DEPENDS+=  windows_x86_64_msvc-0.42.0
Index: pkgsrc/editors/helix/distinfo
diff -u pkgsrc/editors/helix/distinfo:1.2 pkgsrc/editors/helix/distinfo:1.3
--- pkgsrc/editors/helix/distinfo:1.2   Fri Nov 11 20:23:39 2022
+++ pkgsrc/editors/helix/distinfo       Wed Dec  7 17:08:38 2022
@@ -1,20 +1,32 @@
-$NetBSD: distinfo,v 1.2 2022/11/11 20:23:39 nikita Exp $
+$NetBSD: distinfo,v 1.3 2022/12/07 17:08:38 jperkin Exp $
 
-BLAKE2s (helix/22.08.1.tar.gz) = de727fe64dd8aecfd2910a3759c87e05fba4c825ba62734fd16344a2cc8506cb
-SHA512 (helix/22.08.1.tar.gz) = 4471e0396d4e57d74dfeb2af69874ca446d2e05c719d7128aa2f13562e0f53a1a92f1884fd12bf1023ce3b3006c077284eaafef1510bb061c80d7e55d78fa8bb
-Size (helix/22.08.1.tar.gz) = 1810204 bytes
-BLAKE2s (helix/aho-corasick-0.7.18.crate) = 8925e88e2df4b5ca3b31783f527e1bb31dbe27846f409f631148fa239f3b2935
-SHA512 (helix/aho-corasick-0.7.18.crate) = 7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00
-Size (helix/aho-corasick-0.7.18.crate) = 112923 bytes
+BLAKE2s (helix/22.12.tar.gz) = 5b98007459255e628cd7d8af1ec044291752ba1ce0ce74a3f4bf4e8ec84170f7
+SHA512 (helix/22.12.tar.gz) = 960ca4438718484010d79bf1cbc4884f6f76e831bdd227780daf7ffd4053b22cb5695a25be94d6390edfab12d3a75a7be2bdb99bc7d173d6d472c8404e29e6f5
+Size (helix/22.12.tar.gz) = 1953084 bytes
+BLAKE2s (helix/adler-1.0.2.crate) = f263779d752af886455fc0f42c997893fb1a09edcf1bd2980605251c2e3602aa
+SHA512 (helix/adler-1.0.2.crate) = 7ab190d31890fc05b0b55d8e2c6527a505e06793d5496be0b3831e0513412f9ba97f8148f6f68ed0770fa9cd980a5092d885e058becf1d5506b7c74b82674aa1
+Size (helix/adler-1.0.2.crate) = 12778 bytes
+BLAKE2s (helix/ahash-0.7.6.crate) = 5a260485860dccfc4af4ad41b107d11c1a1a0fadb036ef801484ecc98d4a6bc8
+SHA512 (helix/ahash-0.7.6.crate) = 61354688b6fb096359faefb6f34be958cd2215d56b88c22c737d24183eaad433f811bc9e64f927e4852c87d2799c22fda82b55cfbef2ed6357ff74f0c4ffec68
+Size (helix/ahash-0.7.6.crate) = 38030 bytes
+BLAKE2s (helix/ahash-0.8.2.crate) = aa65d5106be74fb51ee76589bd7ff833a3c6bdc303277d4fc9a86dd791d720f2
+SHA512 (helix/ahash-0.8.2.crate) = efc633b4dcd790e8dbc2da4e103a7ee82c3e0f97d37e15a06fd6fc0b73923d721604708f13435a9dcba50c4d53ca5db498e62f84320d8e966581889c2e9d9722
+Size (helix/ahash-0.8.2.crate) = 42491 bytes
+BLAKE2s (helix/aho-corasick-0.7.20.crate) = e435fcd774a78d21bafe7b56bad76b8595dcd87a850c6ef2a41206c7ec6439c5
+SHA512 (helix/aho-corasick-0.7.20.crate) = ad31f3d1b3fe41e593d4ca7e721bbad62936f2e6a17fd1e0997353edb6fc906d1bef2b79f0ac7c7676abe637bbabb23ff22059947be379a2441011f8178983c5
+Size (helix/aho-corasick-0.7.20.crate) = 111440 bytes
 BLAKE2s (helix/android_system_properties-0.1.5.crate) = e405a7701baf9817ca6e946b78ab2ae83f4667112c19c5214606cd863ca5c765
 SHA512 (helix/android_system_properties-0.1.5.crate) = b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191
 Size (helix/android_system_properties-0.1.5.crate) = 5243 bytes
-BLAKE2s (helix/anyhow-1.0.63.crate) = 26adc0de6db41d778e2b0162493a6fa5b2f085c5962754e8211218be0a809166
-SHA512 (helix/anyhow-1.0.63.crate) = 41ae7338ba0505cf43b6c8a36b54e5714de91dc2c9c8fe5ba4272fc72ee30c9fc205bc1a63d968ce68b68a556c5307597c91b036e25f71f93b3245303f636ec7
-Size (helix/anyhow-1.0.63.crate) = 43461 bytes
+BLAKE2s (helix/anyhow-1.0.66.crate) = 8f80332ec72132612603d853a1e995ad30c019fa19ecee858f6a117bf134a72d
+SHA512 (helix/anyhow-1.0.66.crate) = 7b4078906df2805d491dc2f29c4eec85a9f43078c0dcd9c05261c2706ed655953b693c4f59fda62547681b29cda9ac7a0789f1359bb18110403cfe34e9fb0dc3
+Size (helix/anyhow-1.0.66.crate) = 43770 bytes
 BLAKE2s (helix/arc-swap-1.5.1.crate) = ae85262e8fa11faea978acbbbfd65351c2519cd73be05fbb2bcdf7527927e4fc
 SHA512 (helix/arc-swap-1.5.1.crate) = 8636149e92c068d5ff5352a19c9973e7bf2aba68b9363c783178903a8665f6edabbd30c25ad7992646635efe5830d67c958f8d41b44a4ed1fe5698628b41c074
 Size (helix/arc-swap-1.5.1.crate) = 66157 bytes
+BLAKE2s (helix/atoi-1.0.0.crate) = f230d51c9a2f1b041aadfd6b58f05f0aadb4fa349b8ab8051c1bd7d57d3ebb38
+SHA512 (helix/atoi-1.0.0.crate) = 25c0aa22ec31d8c8a254dd9403eb08b719ecc1101df48ba1a39b273a53e95f2e4f224ead0465a7fdaec910497a485863674da7e8b68081de4b991c4196af2a23
+Size (helix/atoi-1.0.0.crate) = 7768 bytes
 BLAKE2s (helix/autocfg-1.1.0.crate) = dd57bc2348994ace592664469f4b2389f230343402c627a9981eb582f10b0060
 SHA512 (helix/autocfg-1.1.0.crate) = df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
 Size (helix/autocfg-1.1.0.crate) = 13272 bytes
@@ -24,51 +36,99 @@ Size (helix/bitflags-1.3.2.crate) = 2302
 BLAKE2s (helix/bstr-0.2.17.crate) = a970078acf6f8b1a2a6be249cda3a6cc7225239af2aa21cbac2b60fbaab453fd
 SHA512 (helix/bstr-0.2.17.crate) = 883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2
 Size (helix/bstr-0.2.17.crate) = 330350 bytes
-BLAKE2s (helix/bumpalo-3.11.0.crate) = 64eaa4f2ffceff89b4cdf8ccbffed33bc8a0e9b10e2aa6bf0cd51271105f4d54
-SHA512 (helix/bumpalo-3.11.0.crate) = f747b5743bd2825c62c363ec49f1eccc492d7cf8cca8101aa9733f32489685c1777344dc6183f83c772f1067f9648b953d3ae1034976a14295f252f1ee7788fa
-Size (helix/bumpalo-3.11.0.crate) = 80945 bytes
+BLAKE2s (helix/bstr-1.0.1.crate) = 7e9cb43f3b5e652acd5236f918cce507219e4aa4e684f383683356a473aa0b90
+SHA512 (helix/bstr-1.0.1.crate) = b4896364458074cf478c8df412619860858f5eb96e2228e5d083f074dd11b49ec1076df314c5d593dd4f8da1a286305793cdfecbcd9aa5f417706e545c4e8585
+Size (helix/bstr-1.0.1.crate) = 340636 bytes
+BLAKE2s (helix/btoi-0.4.2.crate) = 111e4bdfdde3b65bc0eccfe9c5f871ac23429e281d7c7cb0ef11a8ca8448e6c4
+SHA512 (helix/btoi-0.4.2.crate) = dd250b2e41728c4bd7c41a973b5701ab0e599470030cf88a13713c3262cd454d2515336f49cd6dcbe8b928eb38a053778fb578d11b693ee2d1aa4af07d40b6cf
+Size (helix/btoi-0.4.2.crate) = 9580 bytes
+BLAKE2s (helix/bumpalo-3.11.1.crate) = 20152b0f139ad04aabd14f825b0fe1bf432d7f882e153e0fe9bb5cea306ede64
+SHA512 (helix/bumpalo-3.11.1.crate) = 70e90bee1fa4e783ff5a3b18f192b9347bafab7daaa907e74913a415a66c29acfb073fcfb46150801aa7649ab0d2ec8a610de239551565dd167bac72ab13a9bc
+Size (helix/bumpalo-3.11.1.crate) = 81207 bytes
+BLAKE2s (helix/byte-unit-4.0.17.crate) = 50daba54e6387960dad2ac1294fb0139dea2aff953a468c5a75583725ae2c61c
+SHA512 (helix/byte-unit-4.0.17.crate) = ef0e6a4b22af5346f580f42f76eab08a88ef24697f954c8ebd687728ea950f77bfcb3c2d780253b1678e6cc0b4ba2d73cf8f5f10e509b0428b2c3db22e65baf1
+Size (helix/byte-unit-4.0.17.crate) = 10943 bytes
 BLAKE2s (helix/bytecount-0.6.3.crate) = 15891f27d83c395415d55106a32605c34bebccda46527bc4ee9d57efa8737d44
 SHA512 (helix/bytecount-0.6.3.crate) = 0c5f424329883726589e69842d2ac0767dc0b440d744a4452a14cbd449b8ca2e8117fa2978b4aa9b803a1a7cf79e9cf67e948057e8ee521e2422ca2e145ea670
 Size (helix/bytecount-0.6.3.crate) = 12416 bytes
-BLAKE2s (helix/bytes-1.2.1.crate) = 998cc2d60ccbaa9bc6612e7e8cab9433fd9a9485efbea465de34642d82709747
-SHA512 (helix/bytes-1.2.1.crate) = 39c19594f52af24b04eab319ab329e8ecb5732e4531184eb376677f57c8a6402c15bd171282498e69a4a472d82e308d0dc8140df0b7d923dca588aec90c4fd31
-Size (helix/bytes-1.2.1.crate) = 54857 bytes
+BLAKE2s (helix/bytes-1.3.0.crate) = a8c7cd1fc358469bf398ecc2264449d5059aa4f535b25a9de58be0d52fe4c31f
+SHA512 (helix/bytes-1.3.0.crate) = 902c9af417f7aef25e47b15ed2256da5ae171fa866f2f511d6da5cb0a9271d7da214b10c774bff5d0ce186be1eb60c88f7aed848c264e1000bcbcfe0d25f9f76
+Size (helix/bytes-1.3.0.crate) = 57563 bytes
+BLAKE2s (helix/bytesize-1.1.0.crate) = e2c9860037dea32c01df57f12d94e76b4180147adc32b52d61ee9e7b2a01d612
+SHA512 (helix/bytesize-1.1.0.crate) = 36f35cf53c468cf011b231d3fc5d00c5224fa3d917854e347daeaaae53ae7ee36c4d8ba26788460d56c922c9ffb0eeebc60655fef7366ae42e221950d03f6715
+Size (helix/bytesize-1.1.0.crate) = 9370 bytes
 BLAKE2s (helix/cassowary-0.3.0.crate) = b17facbc17a2111cef15ced2fdcbee59ae6747e942e059144b8b67ca7c13d9d2
 SHA512 (helix/cassowary-0.3.0.crate) = 0838c0b79ed31f0c514fe4ac82633976e34b0d6cb08616313cda0e00623514fc6498c6c308cfef54ea029f1fdbaafe2991ca8ac3c38437a113ac62e37f9397f8
 Size (helix/cassowary-0.3.0.crate) = 22876 bytes
-BLAKE2s (helix/cc-1.0.73.crate) = 1a51796d78619d44969ced4fea592d9e68fc7584bfccc66e8cb75db6328bf2a2
-SHA512 (helix/cc-1.0.73.crate) = 980f012b90c6410144f6de4995048337e09214f19603076db6d4edb88e9ef9ac9e8c6e25569f66c2be3a47e99298f5886dafc102e1a9122316179aa26bc1c985
-Size (helix/cc-1.0.73.crate) = 57880 bytes
+BLAKE2s (helix/castaway-0.2.2.crate) = a618a3e2f955f24b4d77fe53fb51fada209202974cc5c791d1fa6b35c615503f
+SHA512 (helix/castaway-0.2.2.crate) = dbce2a61a429eda7a8f21b4a35dced729267298be9793310afaff58843211a7177a9bb932a4bd9dfcedaaf1a2570b90261d4c1047c62474450ea835dcfc325a4
+Size (helix/castaway-0.2.2.crate) = 11091 bytes
+BLAKE2s (helix/cc-1.0.77.crate) = fe25536fb1f3fa15d4456d9c598e7554b0a17c3dc7963f497ca9623e4b0aeb8c
+SHA512 (helix/cc-1.0.77.crate) = 38a421818bbb22fa6a6bd871a7d69add88932db68683ec91d1b4ce1ba68ea2b9272c42c35f437030614cb522f43db964e3a8f1223dcdef9158090b00d17afe2b
+Size (helix/cc-1.0.77.crate) = 60723 bytes
 BLAKE2s (helix/cfg-if-1.0.0.crate) = fbb02f63b24cc224b045ff2aac3aefd0a77cf7b578df4d5f9da9517a59aaf9bb
 SHA512 (helix/cfg-if-1.0.0.crate) = 0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
 Size (helix/cfg-if-1.0.0.crate) = 7934 bytes
 BLAKE2s (helix/chardetng-0.1.17.crate) = 4f441f60551fec360ff13d821d59714295d19dc42d07a40ead3b9c45e9528146
 SHA512 (helix/chardetng-0.1.17.crate) = 0b537b68e6da14e4a8b63cd069b3e9d6b09a4df5e473157f3ddce91d7a01f755c7b5278bfc9dc09ded92f660535c5944712f0ffa2737fbfaafbf5b95e29c7aa7
 Size (helix/chardetng-0.1.17.crate) = 56362 bytes
-BLAKE2s (helix/chrono-0.4.22.crate) = b23f880426399cc9de23adc3c7cfd044c935cc90d41215e39d48fad04a15ccbe
-SHA512 (helix/chrono-0.4.22.crate) = de856679ec16afe035176b22125a00ced532d49c8babac0a88fa5f6e4a3d9e526a34ee8bf51639653fc313a5703a202b1be013aa16fdd72a505151d7aafa7c44
-Size (helix/chrono-0.4.22.crate) = 185570 bytes
+BLAKE2s (helix/chrono-0.4.23.crate) = 538eedc112b3a58729530283ac9fe28731694390fcaf8c4aee7744d8aee73e8b
+SHA512 (helix/chrono-0.4.23.crate) = 697a78ee83eaf38d83011bdf2086b3149b830d3d270e8414828b98ed2426063df43ac6eb4324f2dd694662afb86e6e4f005dee6116dfdd97adaebedefffd43fa
+Size (helix/chrono-0.4.23.crate) = 187259 bytes
 BLAKE2s (helix/clipboard-win-4.4.2.crate) = 818b07a211f512a8a089c0343c6318e71c4ad54cf52d3e7f7481ce737fcdc36f
 SHA512 (helix/clipboard-win-4.4.2.crate) = cae7d2a9273f9ec2f14f511c147305da0e75fb48f0b91fe0e60d64c6598072893f647a931945ed03961652f4cd47c06d2a11282e8e000abb5fe0ad21e3a62371
 Size (helix/clipboard-win-4.4.2.crate) = 12678 bytes
+BLAKE2s (helix/clru-0.5.0.crate) = 1de2942cfa6673c186062a479eeebd25026ddf680c4c819f8858a77ebcde8bf0
+SHA512 (helix/clru-0.5.0.crate) = 2ed3ab93850b032c1ef708f9d9b1c85b451a7032b6218e0a45b3376fe78d9a494308b87447a29cef994cdfec3a2f5efc24b804b3142067bc9450824f16d6aac7
+Size (helix/clru-0.5.0.crate) = 16147 bytes
+BLAKE2s (helix/codespan-reporting-0.11.1.crate) = be633c7879fb3d6ea50ceea7fc86d7883446a859cad5dbfac671b4c35b182ded
+SHA512 (helix/codespan-reporting-0.11.1.crate) = 0869789f5c50d3523d3ee16a8fe64756498a13704efbe82bb0845eaa87c7b6b1d075b3b6b80567cd9fce6cb09c5179e9c07e485fd17ce56c8139ade0f8bc6844
+Size (helix/codespan-reporting-0.11.1.crate) = 48963 bytes
+BLAKE2s (helix/compact_str-0.6.1.crate) = 75ef5acb44d0cf7ecd2dfb51f308d07319c77761cbb5d042df63402e9c9c3a32
+SHA512 (helix/compact_str-0.6.1.crate) = 4f017210cd42ed6d1a641cbd1c9f214c356dd9a188675413751aef2359eff27f2045622802f9df633fa803073099e32619c7a67477369197be81035da0c10acc
+Size (helix/compact_str-0.6.1.crate) = 54555 bytes
 BLAKE2s (helix/content_inspector-0.2.4.crate) = 65527368f883276d5d2c0ab8274857ebfaf9d1cd3d04b1290bdc173f64cbb309
 SHA512 (helix/content_inspector-0.2.4.crate) = 1acb8b4f12ce3479f5a60b7b6a0c05b86548591e488e7be529c4a2f9aaa60a76ed07e7ce1e557664d31ddd9964e7f73415ad667cd14ada919f61511bf486ed6f
 Size (helix/content_inspector-0.2.4.crate) = 11386 bytes
 BLAKE2s (helix/core-foundation-sys-0.8.3.crate) = 679c01a6f663daba747856f9e5c72ad3f1ef1dafb2f6f7211cc1e1c6637ba049
 SHA512 (helix/core-foundation-sys-0.8.3.crate) = a3ba3184cef65dafe8318c4db7e59eb2749dcde7b2370ad20272b0735ded0032daf2de3fd0cf55eb48448a335f5b81e8e745f2a647f9a43bb85946ce714bfd82
 Size (helix/core-foundation-sys-0.8.3.crate) = 17519 bytes
-BLAKE2s (helix/crossbeam-utils-0.8.11.crate) = 415a89677c6eb448168eb17e1f6e4141e058819c7997bb6a6b0f1cc0e30a23eb
-SHA512 (helix/crossbeam-utils-0.8.11.crate) = eeb19480ca1860953507606f6649756974f65a05883c695fa371ff6d80a9fd0b94872aad5168955b4771b38f50314364236cb39363bcafe9750b687ff92a5ed5
-Size (helix/crossbeam-utils-0.8.11.crate) = 40887 bytes
+BLAKE2s (helix/crc32fast-1.3.2.crate) = c60cd89cc50c52d5bedb1e7ce6c6299196d26700152f85282218c6fe15ec2a8b
+SHA512 (helix/crc32fast-1.3.2.crate) = a683943e252afdb1b9d626a07533ed11cf7a63af603c19640056c5d2b9c884ad9aff33ac54c0853ffca2f6cf94b0730eae6c05abf3e53e55e709d180c8152357
+Size (helix/crc32fast-1.3.2.crate) = 38661 bytes
+BLAKE2s (helix/crossbeam-utils-0.8.14.crate) = 065e3e303cd4141354ab27ccededc07a9c6d92f1f5a425a985740f1d32c4e709
+SHA512 (helix/crossbeam-utils-0.8.14.crate) = fa00a57c41c9daa152f8a6c6f4d3c77986de1aa21585984adf577e244c2f121db014ba2beb92241590e1cf78710e77d9a703ce4a4d44d8854bc3e60690151393
+Size (helix/crossbeam-utils-0.8.14.crate) = 42127 bytes
 BLAKE2s (helix/crossterm-0.25.0.crate) = 343ec080ae0686b8477093a9fff8991f07a696bb7530a59d9fa0cb73f578071d
 SHA512 (helix/crossterm-0.25.0.crate) = fdf2b5b4bdcbc8c7dc4e8c5e0cdf68cacdb97886b52087dde1f1be9b869c00965c0cf9db64b700801b0d1274b913703ade66a92d47aa8da604121693b8701201
 Size (helix/crossterm-0.25.0.crate) = 116533 bytes
 BLAKE2s (helix/crossterm_winapi-0.9.0.crate) = 66dfac33e190f850bc4e3b08ffc5fc97efa584e35007e75d8ef748e901878781
 SHA512 (helix/crossterm_winapi-0.9.0.crate) = b8c32a82cc83244e8991931e3fe0d85527ee2cc5e6b4a0839d633448dfa8a137c87684e8e079f44edf5a994355e0106bb573b36b57c7420ac5cb6fb0ce20ce8d
 Size (helix/crossterm_winapi-0.9.0.crate) = 15561 bytes
+BLAKE2s (helix/cxx-1.0.82.crate) = 2d0d9dc82d03e4a86b51a39ccd44ead54107d90ac660adf7cfdeb1af7633b0dc
+SHA512 (helix/cxx-1.0.82.crate) = dc7b446c96133ee1ecf79f8d8f56921e85eb45ffd33c42c5e399062d9ddaf0cd76ea183099025331bffba58a6c91a8df571596d56f8dc75960573eacda293e6c
+Size (helix/cxx-1.0.82.crate) = 197448 bytes
+BLAKE2s (helix/cxx-build-1.0.82.crate) = 5528906b4f794b3de2186594e0817137385bbbbf6850d7a9292bf610b631ecae
+SHA512 (helix/cxx-build-1.0.82.crate) = cf5e6e41aee73896b074da154092a52db843e7607d13928ce448fa914b1e4bb0f184ebea595c26fa75a067d72043b9aa53c0509602490de52c783ba7fb323d99
+Size (helix/cxx-build-1.0.82.crate) = 84841 bytes
+BLAKE2s (helix/cxxbridge-flags-1.0.82.crate) = 4b832064a9a005c54cc0bc5a1b2a81a394ef6f16c08a12c87d8932e8db9801c1
+SHA512 (helix/cxxbridge-flags-1.0.82.crate) = eb02cb7075c2fba7b66670186a019971fa5897d91a746b7a7e840c7fca6c501f412d850aa82bd5f74358f02411041bf38fb6712a005e137f870e30aeaeac0258
+Size (helix/cxxbridge-flags-1.0.82.crate) = 5634 bytes
+BLAKE2s (helix/cxxbridge-macro-1.0.82.crate) = 2771997e60346d6c055febb2add079c342dfd4c33069f45cfd6179ed1b76e390
+SHA512 (helix/cxxbridge-macro-1.0.82.crate) = 630d342c4d4c9a7435dcdb042fc26faffa8cb97b7a43fbc98fe4c9733e16c92862655356ad896f31e6f09a23ff0c26b73f28f1df6a7e3f740644d78c0d01516b
+Size (helix/cxxbridge-macro-1.0.82.crate) = 59863 bytes
+BLAKE2s (helix/dashmap-5.4.0.crate) = 654643e32b102363fe58bd607cb7fbcbf7a38178f103757bf591b0fc09ed37e1
+SHA512 (helix/dashmap-5.4.0.crate) = 886ec6dd43d4053ca964ade99586a31b420953e47a6e710a1259d8d5f34936f847683844db5c73dfe243803ba45b30ab9641b27af1ae5d825180119a7d61a910
+Size (helix/dashmap-5.4.0.crate) = 22862 bytes
+BLAKE2s (helix/dirs-4.0.0.crate) = 70b38dd5ea44b52e63ced09edbf7d58f820e5180d946d53591944210f15071f4
+SHA512 (helix/dirs-4.0.0.crate) = be582e5045f1916fb6b918c8e8c5907b4b663534025e4227ea4828e2aa9fe7fbcb3c48f1f0d08d163ba684aa4404076ac210e7f14766a09b9ed89a2825121b3b
+Size (helix/dirs-4.0.0.crate) = 12503 bytes
 BLAKE2s (helix/dirs-next-2.0.0.crate) = 792fd296dd1721386a0a8971725efc37df848dc023185a4f792da2b3d1434c08
 SHA512 (helix/dirs-next-2.0.0.crate) = 6ccb732da8ccf7bf35952c22a3b0caa8238319feb0a6cd3b0957e6be12548a2ce507c69cb6d3cbd2adfb37e13e6521c6229da5999edb0e47a292a41c3ea1a766
 Size (helix/dirs-next-2.0.0.crate) = 11689 bytes
+BLAKE2s (helix/dirs-sys-0.3.7.crate) = baa17cbec722cdc7e6369057c06ac108e433fa039f1f41c76612a5ece7f163c8
+SHA512 (helix/dirs-sys-0.3.7.crate) = e630964e4c452950a475c10a490b49b2979dd7dfda48172b905cc789153ae4a0ba2d7d91f690705cbfff23737c4b4a339eb0c49e922efd7d68a92fe6368a929f
+Size (helix/dirs-sys-0.3.7.crate) = 10597 bytes
 BLAKE2s (helix/dirs-sys-next-0.1.2.crate) = 954d4a890f8b3452a4340a93e26b0b04a16397a2b9c15a6f38b88dbf4b836b45
 SHA512 (helix/dirs-sys-next-0.1.2.crate) = b3c40a8e93d4f9f4a890718076e14779aedd67a79da61b466788268c1eaea19aa493f043a7e410f5023a23d5509e639a6fc6681fbee30e252a601091cfffa2d5
 Size (helix/dirs-sys-next-0.1.2.crate) = 10681 bytes
@@ -93,30 +153,135 @@ Size (helix/fastrand-1.8.0.crate) = 1136
 BLAKE2s (helix/fern-0.6.1.crate) = ab7654d836547b8dba81860380a0b132a137c952d9e2e74c6f11f61de4774efb
 SHA512 (helix/fern-0.6.1.crate) = f33d3e03c8f4248b046bc84c83d0de9be77b895e79ebc1ab943c50d7ebae021477749376daa14763709aaafa69d414a8ea774bb009a10737d1de57c7cb6d7fbc
 Size (helix/fern-0.6.1.crate) = 300402 bytes
+BLAKE2s (helix/filetime-0.2.18.crate) = 815c171a07b472b7da55337b3cfccc5d53232cabe070d3df4bdabe13eaeb4c39
+SHA512 (helix/filetime-0.2.18.crate) = d1631a50d0f1d3f43e316c6348a3595ea4a7d1116e904ac2bf6586b76ea5aef98ba84ff6e6d0b2a08de2515b8ad40f52fb95d6ccfaf1f316cfd7c5f6f8332129
+Size (helix/filetime-0.2.18.crate) = 14622 bytes
+BLAKE2s (helix/flate2-1.0.25.crate) = 8bc5a58136c877c007759d197f43d616619760e34fb9b7e08fb628422ab5f48f
+SHA512 (helix/flate2-1.0.25.crate) = d81a463360ee2778f609ff297e04548120d1fda1f9e020fb2f429ea51189b8fe6cae57252fcd924d71fb65ad0f93ff7cdc7235913f8b78fa82925939cf884af7
+Size (helix/flate2-1.0.25.crate) = 70210 bytes
 BLAKE2s (helix/fnv-1.0.7.crate) = ffa8e3e3e120c65486f2575822704aa79aac381f375d7295875475e36775ff09
 SHA512 (helix/fnv-1.0.7.crate) = 2195a4b34a78e2dd9838caf0ee556bf87cbb4a8ef5505aac663b614eb59dcfc0c40f432463ede41ecca57bfe7711f72673d39a85fe03d426f1324097d5628334
 Size (helix/fnv-1.0.7.crate) = 11266 bytes
-BLAKE2s (helix/form_urlencoded-1.0.1.crate) = 8c8ac71370d205f0bd206eb99c04e9475651893c75d52f3f125ff23c8fc58bc4
-SHA512 (helix/form_urlencoded-1.0.1.crate) = 3ab371c223561a27ffbd35cf648ef4a9145d47bba9d71900a7c54cfc2f089175e9361f6352331a9a7fa018923b15e7a3553c8f9ff9fae80e1626e641a5faff68
-Size (helix/form_urlencoded-1.0.1.crate) = 8773 bytes
-BLAKE2s (helix/futures-core-0.3.24.crate) = f15b77f50fcb78e59664b20404866407b6e1f63b93ac8832dc82b34a9c732a8d
-SHA512 (helix/futures-core-0.3.24.crate) = d39b19f0c2109d7937d8dd7f6ee45144ca3662746189a5856e0f9a29bb255bc915214c008e97475046703fa90ea28343984575fba394a93dd782b95f09963e67
-Size (helix/futures-core-0.3.24.crate) = 14618 bytes
-BLAKE2s (helix/futures-executor-0.3.24.crate) = bb43ce757720fcf2910bc2a2d19ecd975c3f50cf0abb838616554c4dd0b84320
-SHA512 (helix/futures-executor-0.3.24.crate) = fa6385534511ddfe73e4bc80081879b0a425041557d83b1d59f3e44f86ec279327532d732ed4daa4b13e74a11460fa7a99713b00563cdad153ea13c0dade234c
-Size (helix/futures-executor-0.3.24.crate) = 17745 bytes
-BLAKE2s (helix/futures-task-0.3.24.crate) = a44380b0f139077e0ed5bbc3c9d285739ecbea27a0fb856c19ccb41be3873c61
-SHA512 (helix/futures-task-0.3.24.crate) = a78a739176c20afac835ed7b1fec04772aee1f2127bf4a4d0e54bf1e78079e854794fb3cff5858108168d8d1bfef7da99221599c9c533bc3c3059ef07286d54c
-Size (helix/futures-task-0.3.24.crate) = 11836 bytes
-BLAKE2s (helix/futures-util-0.3.24.crate) = 86853ad7b36e6e599d9d646b54439e9ff7afdd537e0dbfce7ff856d31c76ee3d
-SHA512 (helix/futures-util-0.3.24.crate) = 30cfa53bc58101948ca6e828839186575cd8b092a629bf59a7e4df205309f82d0cd4ec70340f5e98c76fecf604934e553562f7c79ef382ac8451c640bd95c5be
-Size (helix/futures-util-0.3.24.crate) = 155823 bytes
+BLAKE2s (helix/form_urlencoded-1.1.0.crate) = 9c29b0cdd6391a3b581fbeee81b74b27a21e9d7c000cbecd16f66f97e597772d
+SHA512 (helix/form_urlencoded-1.1.0.crate) = 9e245495dbf235b147e4216b313f2e6a96357d2782a66d71c08c2902c6a065701ca8ecdbb6b2035983a83c44cf36c921b5c71d63af0e02dd39bf5f8347117e11
+Size (helix/form_urlencoded-1.1.0.crate) = 8734 bytes
+BLAKE2s (helix/futures-core-0.3.25.crate) = 2ff0063ae1edcaf923548854843263e561dad3b87bb35c39ffa6bed5b2bd7df1
+SHA512 (helix/futures-core-0.3.25.crate) = 3b3c758c493255024df26a763023a5d403fcf1a9fd105b08c518bdd5891ada4fddfcbfc8cde6101157a209ab6d1555831bfeb49372b17e902b4fdd8a83cded4b
+Size (helix/futures-core-0.3.25.crate) = 14623 bytes
+BLAKE2s (helix/futures-executor-0.3.25.crate) = beea9585ba7f671a27f66e2296b2f70b637d5f2794509c5a089499ab87a1e7e7
+SHA512 (helix/futures-executor-0.3.25.crate) = 66b9bdce86c41d5574734a6878562fee45182a3a6ad3b5cf57895aabafa5ae610f440dd226887e547c3aabee792628a5f7b4406c4ddd909501afb66dcb26b64b
+Size (helix/futures-executor-0.3.25.crate) = 17744 bytes
+BLAKE2s (helix/futures-task-0.3.25.crate) = 5c9d7cea3c23b14a1deaf8205c52cc7cccb0201031216cb263c6b53095d08ddb
+SHA512 (helix/futures-task-0.3.25.crate) = d2278d52397390d7cc1028bcccf1aec009b16ffc33873b8a96cc4f456d7cf501b86660507489d8b284e0798e7fe68c04796471050b6fd2d0529c761d89f9efed
+Size (helix/futures-task-0.3.25.crate) = 11844 bytes
+BLAKE2s (helix/futures-util-0.3.25.crate) = 3085e1db2d33b99619519b3767c45e78477a1beb89690173a6db41471d3d7c25
+SHA512 (helix/futures-util-0.3.25.crate) = 3e233a3093f3889af6bb5adf661c1cc32f821b00975bea05eee14c2b38e25974b65c10234eb060c52dea4c665ebd09895df666f8583559b7f7d7636070ea51a8
+Size (helix/futures-util-0.3.25.crate) = 155866 bytes
 BLAKE2s (helix/fuzzy-matcher-0.3.7.crate) = 53818ee61c5ee943a246e27bcaecf14acb42e9e7c6830c29a2a7fa945d506743
 SHA512 (helix/fuzzy-matcher-0.3.7.crate) = ebcb6de06dd66da952183c75e4a44988bc60df17f035fe541c134f1c4e3c33d18a7385a9867fc23a99c07cef2b2737edd6128dea6546e243985da2f3a55dd8e3
 Size (helix/fuzzy-matcher-0.3.7.crate) = 18047 bytes
-BLAKE2s (helix/getrandom-0.2.7.crate) = 848f0e9bdfcb49de8afc3728f435729c80634846ce7f1be874908bcfd5fd5061
-SHA512 (helix/getrandom-0.2.7.crate) = 01803e609848662ad8650cf451dfc2c37580da0b7b5e0d4cc764da6ded253cf49ae42a433b1c53e89773bde00c1ccc136394e58ed4548e7b5c0ca7e202e857e1
-Size (helix/getrandom-0.2.7.crate) = 28854 bytes
+BLAKE2s (helix/getrandom-0.2.8.crate) = 3384f83c641aae81e11d7974210ee38cc05eb376d6cbf156b219236ab21f9159
+SHA512 (helix/getrandom-0.2.8.crate) = cd7aea29f79a33a0de2a52a0a82f2b57ea8f27908ccfe00a5f42248766df88b225023603ec56d6fc634ef9c1eb67ad0135c90d4c695f6f659db0767e7fda44c5
+Size (helix/getrandom-0.2.8.crate) = 30553 bytes
+BLAKE2s (helix/git-actor-0.14.1.crate) = 84aa0e10b750269f9192580bd48598643354664d42c8cff43091ef119e7ca076
+SHA512 (helix/git-actor-0.14.1.crate) = 7709d5d4fd208cf7ff56fb62858661cf99e04043c691169d8f01e5b3a20917c052425488f1670e4c732705272b6c2827350d2806d728db4f6f9367d63ea573f2
+Size (helix/git-actor-0.14.1.crate) = 4125 bytes
+BLAKE2s (helix/git-attributes-0.6.0.crate) = 31d93a45d106d7222d4d109b0aa46c51d82a6e0ff641a9f0fea13ab5bce89ca0
+SHA512 (helix/git-attributes-0.6.0.crate) = 8df23bdffe60dbfc6db13f6ae38d64b27a757f97d1869170b674db7d707a169b77ffa97ba5a95e25c5134c87e02ef98ab4818f0ab26daa167c341748eca9274b
+Size (helix/git-attributes-0.6.0.crate) = 18295 bytes
+BLAKE2s (helix/git-bitmap-0.2.0.crate) = e79c4af5a89a21ec353427edd8f15a1b2241e133a3339e54d070de610c561179
+SHA512 (helix/git-bitmap-0.2.0.crate) = 43f0b41be60163f95867c0907ae5ccbc13c472175a17113579cb61201fe7e070783597ea610de1d151b43a081cf4b5fd7b8a5e53c6328a473474cdecbf851eb0
+Size (helix/git-bitmap-0.2.0.crate) = 6334 bytes
+BLAKE2s (helix/git-chunk-0.4.0.crate) = daa62b55cfef41ddb002b40ed4c24762aebdf203f4792f0091ba070f7051d38f
+SHA512 (helix/git-chunk-0.4.0.crate) = 0f0e8cf8b8bba7163c4f129bbe6033b13821dac2b706268f6d54c2b0627ccc4ca635268c2e7dbd4341b0dffb053bd1dabc6acc7e05af1adcb861e9f829f70764
+Size (helix/git-chunk-0.4.0.crate) = 9558 bytes
+BLAKE2s (helix/git-command-0.2.0.crate) = 96aebddcdb9ce0ed8e93d815a0770e152f2234364ffb3c3c3ce48e0eb4349e5a
+SHA512 (helix/git-command-0.2.0.crate) = b443782468ede6ec9c007205ec5fe7530b7d1847abfd0b336c2ad740ee583c128bd2d5a05da4b3d5f972b20b72f8c7e6b34663540606d71cce7885686ca34616
+Size (helix/git-command-0.2.0.crate) = 5125 bytes
+BLAKE2s (helix/git-config-0.12.0.crate) = 7cc52018a7c5b7c0fd5817c9294c53433af7d907636058fbed00707067dc8570
+SHA512 (helix/git-config-0.12.0.crate) = f25772a966395ef1b4b45c430608073d0e7c5c85db94eaa24ca56ef2d6de3bfd81276ecfc5038fdf8d841c417150c95868664185c4dc8c6b6f36d15f6474a1e5
+Size (helix/git-config-0.12.0.crate) = 110955 bytes
+BLAKE2s (helix/git-config-value-0.9.0.crate) = a119a2e5dde22bad92b08f0ec034e2813e755e54b36b7563baa8285a79fa1512
+SHA512 (helix/git-config-value-0.9.0.crate) = 4bb2c5f1ec753cc1d234964f6caf4fac4f49f53aac36ef327eb85f6ee95f1def62967ac4d9998669b699a842bc6679f2112e66e12e9849ba1e0bbecfbe250bf7
+Size (helix/git-config-value-0.9.0.crate) = 14121 bytes
+BLAKE2s (helix/git-credentials-0.7.0.crate) = 3df973b2898b26e91b3af51c4bda7a052ba0a3d160f8611accf3e0b4bf8290c5
+SHA512 (helix/git-credentials-0.7.0.crate) = b448712f9e069116800ab88bbafee9d3de1b4d1a3677ee8ea80363aacc0344873a154cfeace86f94d6a1eb1fbad827f6c2a45dba0a8de59d838a6257498be564
+Size (helix/git-credentials-0.7.0.crate) = 31092 bytes
+BLAKE2s (helix/git-date-0.3.0.crate) = 6d8a5c30c05b6f79b531de5d706df3cff7cbb21bccac01771e47aaea8782faee
+SHA512 (helix/git-date-0.3.0.crate) = 08fd0d6cfc3a10821660456608333fadd34d16f55e6863197f830488141132a3fa1fd675b5db88d712b908c317a7d3ffe860d0b66be0caf123eb72b40ff48ec1
+Size (helix/git-date-0.3.0.crate) = 12307 bytes
+BLAKE2s (helix/git-diff-0.23.0.crate) = 2c1df5bb89327d4ecf295afd8fa20a2e151f7fc769a17be68bd7f22411fa895f
+SHA512 (helix/git-diff-0.23.0.crate) = 385ebe53dff39cdce041f0c8780d57bf393b6cefc35a5e4bc044a8ff7a48c4b14b840a0aa0d649b34785c836e5f029f5783c3012a67ceec6898e178241195e23
+Size (helix/git-diff-0.23.0.crate) = 6138 bytes
+BLAKE2s (helix/git-discover-0.9.0.crate) = 6234c2474e4a9efcafd9ef3edab8fbf61cf4afd1b871cfb8eac54e8b9a98b2ee
+SHA512 (helix/git-discover-0.9.0.crate) = a625408a4653ced9461e0ba2673aa6443112e835fe9f7d7eb3e5e202b6f9ac0904ab48e49ceeae193fd3f6fb29c21753fa99ead9fa61e3c28e51cfc68b23e4e7
+Size (helix/git-discover-0.9.0.crate) = 22402 bytes
+BLAKE2s (helix/git-features-0.24.1.crate) = a6dd3deb7eed40a3bc65f1d4be7ab522390ce5293341491cb06fb0baace7e820
+SHA512 (helix/git-features-0.24.1.crate) = 50d841b41fbefb867120643c4ce353ebcfdaf8b04569908cd15d51152535c606901d02c0cc5ca72245cbd1d08d603dca55a0b78db2380301f40e231da2756a42
+Size (helix/git-features-0.24.1.crate) = 52956 bytes
+BLAKE2s (helix/git-glob-0.5.0.crate) = f3b68cc823f728bee81c5ab48685ce6e3fc271039e87f89ac0a54b44fcc9108c
+SHA512 (helix/git-glob-0.5.0.crate) = d9a62ef09862747be5a464812e243ab13803823f00fb4f594852e0ec91209330172407549e932e219ec3d77c4c4e2361d11f1fbe49f9b2be7d48bb74a0b135cb
+Size (helix/git-glob-0.5.0.crate) = 35369 bytes
+BLAKE2s (helix/git-hash-0.10.1.crate) = 461fcf5fa6df44408812a31f483d41d92d552b9cceef6f8d979ab1e51254f8d0
+SHA512 (helix/git-hash-0.10.1.crate) = 98c90ef2893cc26677c5a39008663bcc92ee338a1ac767b6856481c6e474bdf083f79ae4163bf57ab35c4069a90d3e99a9cd074c711ee2c70b74bf2412623152
+Size (helix/git-hash-0.10.1.crate) = 21081 bytes
+BLAKE2s (helix/git-index-0.9.1.crate) = a79f1b65a80f3507808e9ab1dd00e9e18d18bffda0ba1c874987205017d5f2d5
+SHA512 (helix/git-index-0.9.1.crate) = 3f4713f7f9432fbb2e2d84b8170ed347b7a5d503c068f6b394b2aef0c03c79e5a1520a0fd208a960a2598ecdf92496ac441f58e2320d0e8bf6e8d8c31e6d40de
+Size (helix/git-index-0.9.1.crate) = 46434 bytes
+BLAKE2s (helix/git-lock-3.0.0.crate) = be93bef508e75be295d3652d4a5e670b891dfcf5dbd40cf60af0b216ff4847c6
+SHA512 (helix/git-lock-3.0.0.crate) = 09c5f8c942653b06e88a0cac2468301e9488b4b2a9cc6165e7d22edeb75065aa9350ba8c7ec89697370f16d29b110665390abf09c164e9e900a0e84c04bad342
+Size (helix/git-lock-3.0.0.crate) = 17294 bytes
+BLAKE2s (helix/git-mailmap-0.6.0.crate) = 5f0ee261bafb3bcdaf046bc381d54b73cf8fdc9d90a142fcbd94bf0851891df2
+SHA512 (helix/git-mailmap-0.6.0.crate) = 9069eed59ebb300a6c790cc46e5273d47d50cab2bddef001fa2babacc71d568167b36628a363ae2ea43053d0b0edfd358a78f68fae92d11a31aa2a91d39132a5
+Size (helix/git-mailmap-0.6.0.crate) = 14460 bytes
+BLAKE2s (helix/git-object-0.23.0.crate) = f328ef28fa3e70fe8d20aa88f359fdb83eb7d4efe52985214e982879cc3a8187
+SHA512 (helix/git-object-0.23.0.crate) = 030ec0a232686f0273306e57083a90fb59285c8a737ee14e3a3d38d1445eed715440ae70357760eb4ab68d685a2fc7aa09bf49226ac2c2cc85f37fb0e985f4ad
+Size (helix/git-object-0.23.0.crate) = 23487 bytes
+BLAKE2s (helix/git-odb-0.37.0.crate) = a7b97e8c10b231d2968d64e4e868b304fdd7e216be234a53cb16f6e5899693ba
+SHA512 (helix/git-odb-0.37.0.crate) = 4e1caeed4a9f21a8d967782d537f7dd6a2162c3e4ce62bd2ab61798736bd7656423f68d338670fe9bc466616c948d6ace04db0ca128ace981c1cf25a0f82dd7b
+Size (helix/git-odb-0.37.0.crate) = 120472 bytes
+BLAKE2s (helix/git-pack-0.27.0.crate) = b7047f22dfbae2ab6097b3e0811aa8cea968fa33360a60af559eede7a46ccc3a
+SHA512 (helix/git-pack-0.27.0.crate) = b5e1e1986c33236b5a79204232ed70a2e67405997d220c3dd3c5490d2fb5c6ac62e6501c996b3c0dc578288f63cb7b0ce72e13e6db1eaa962d0c58ddd87a11b6
+Size (helix/git-pack-0.27.0.crate) = 119372 bytes
+BLAKE2s (helix/git-path-0.6.0.crate) = c494767201f2780e7e181948aed41ec1ab26eb971631d7564ced350c6f910c34
+SHA512 (helix/git-path-0.6.0.crate) = 58f40fe4baed0712bc1d0c4759bd071421fa79cdbc88fbcdf959eb89e5f4e9f97ba7f0bc2a1adca4e0e1162e74ea15b4aa5e255e7d97891f7b1f9af5811d3879
+Size (helix/git-path-0.6.0.crate) = 15681 bytes
+BLAKE2s (helix/git-prompt-0.2.0.crate) = 0d4767fbd9d6ee265b838f9a8795ad91b4c6bd72f48f09842d2111d550dd1ebd
+SHA512 (helix/git-prompt-0.2.0.crate) = 24415f96365695ebcb0081dc53f55dd85d4db9abfbe5335e05996bb058ed708974d8805a4ff158454520b8bb2ae2991950644e20d911af8406c737fcbb29c593
+Size (helix/git-prompt-0.2.0.crate) = 12162 bytes
+BLAKE2s (helix/git-quote-0.4.0.crate) = d75bf5b33e90cb0b26d8251acd385bc6821a87b88ed28977bd22ce412c283a1b
+SHA512 (helix/git-quote-0.4.0.crate) = 14e2608ea42504cbf28806cef7f2f61e3371ffa5344e7ba91f5512e15e5264997bd8941be32cc910686e8643dc8e20417b6b5ac1fe55bf9955353dcb4cd307fa
+Size (helix/git-quote-0.4.0.crate) = 5647 bytes
+BLAKE2s (helix/git-ref-0.20.0.crate) = 7d09af6a3841df0e2537cd3b4574f669433cdbe06fc5df9d6e881deef40f1703
+SHA512 (helix/git-ref-0.20.0.crate) = 7a5971ef21798bc9661c96682f7271ad3460425e652411cdabbd71bc465feeec8658b2ea78416c6d492aedcea46203abb536d48aad3c65f4708cc3eec11fb89a
+Size (helix/git-ref-0.20.0.crate) = 49940 bytes
+BLAKE2s (helix/git-refspec-0.4.0.crate) = d9c4342dc60f2d572cdae4b256250301f1a1f604ae47581a72256dbd5c121704
+SHA512 (helix/git-refspec-0.4.0.crate) = 40a1b3dbb9db8628013644b10a357d72e83c0aee98f1fc68bd8593083843bfdd00e450e5b1aa6b06f25d14c6c374c7433cdc534b8de91c0c5199fcc4e3e555f5
+Size (helix/git-refspec-0.4.0.crate) = 22472 bytes
+BLAKE2s (helix/git-repository-0.29.0.crate) = 03dee8e0ef046fef809af95e5c65f25b91b4b675c4f81046b75a5ca68c9d6b1d
+SHA512 (helix/git-repository-0.29.0.crate) = b9037f9c0ae1648051bf3852e9c497007a16851261dbe0426968016f6033165522481d685736baf70c5ba58aef4db03f005d9d9415d4ee6888566c08c30bbdf6
+Size (helix/git-repository-0.29.0.crate) = 243828 bytes
+BLAKE2s (helix/git-revision-0.7.0.crate) = 06cba8ce5ed3533f3f25698dcfa8f35749495d31b018a4b8cc85ce1780d04d15
+SHA512 (helix/git-revision-0.7.0.crate) = 94f185e39ce42e31bc5a3bd52642f3211f0106cbf0120b8b8ce068b740410c6e30ca940e0bb777c4198a00b78b231979960632dd06e8061d4112283d4cd4aac2
+Size (helix/git-revision-0.7.0.crate) = 29685 bytes
+BLAKE2s (helix/git-sec-0.5.0.crate) = 90cbe4edde647696807dd1e0508cef05563ef8c67f631b946a2146b94823a6d8
+SHA512 (helix/git-sec-0.5.0.crate) = 321b4a580a69bf1a2601157d88858d339e098ee94651805021014852e819f1b7c019edf98b527619c147073c94cef6f952d613e473452b95d5a5f5475ca57121
+Size (helix/git-sec-0.5.0.crate) = 13233 bytes
+BLAKE2s (helix/git-tempfile-3.0.0.crate) = 16a9cd08a71658bc0e788052e3b986565f42e9992f033097c5703fcb9eab7539
+SHA512 (helix/git-tempfile-3.0.0.crate) = c6e95f068d050a4e169a965096202343326bf1bff0a8a6b6445f75c1600a0b3e413507a6d023c5193ae09a55c8b663790f2794258cdd412634e94721b9047a5b
+Size (helix/git-tempfile-3.0.0.crate) = 29443 bytes
+BLAKE2s (helix/git-traverse-0.19.0.crate) = 5312b60047be916807ec448560b48abf418caf22fcf6e63101e74e41ec057827
+SHA512 (helix/git-traverse-0.19.0.crate) = 6c298a74532b65c3df798cb62556808a81fb3fed43025186e7eb2ebdb5afe96603f17cbbbfb12f00b3dc68fe7b1286c5bfa9ef518413180cff25da3fb6df4150
+Size (helix/git-traverse-0.19.0.crate) = 6846 bytes
+BLAKE2s (helix/git-url-0.11.0.crate) = 7ff9ba04c46345094d509ef448b903e5f09218b0e08185340da4ae862f4f6de4
+SHA512 (helix/git-url-0.11.0.crate) = df86616723bc060e8b16621dcb585a21c90b21c50160de5e907ee432af0651b518228084a5c6728c89b49ac165e511ff54bc743dd84a77295e1bc737b530c87d
+Size (helix/git-url-0.11.0.crate) = 20064 bytes
+BLAKE2s (helix/git-validate-0.7.0.crate) = d9e0d7f625bce379ad69abeeb201660f67d461700a26e9ab0c3d31a5f019d58f
+SHA512 (helix/git-validate-0.7.0.crate) = 9e23ff37989fc3bcc3fd81de25c02ceab9a119d2513217222b117d127666f7abdc321568b0f40af7ae30f0b05adf94b4ecfa5a7d0ee8e600d8111ecbd5273129
+Size (helix/git-validate-0.7.0.crate) = 2508 bytes
+BLAKE2s (helix/git-worktree-0.9.0.crate) = b5aad6a06279b8e907f94c3660369d054d5081f25c88299d6c9355d21c0b026c
+SHA512 (helix/git-worktree-0.9.0.crate) = 4234f395d69a14b3102e151e192a378bfa73d2fe7b94f44d5573cc592e2014625bd09a0578a34195aa7438e6041fc80786895f42b771b97c99936049a98f2bd3
+Size (helix/git-worktree-0.9.0.crate) = 31904 bytes
 BLAKE2s (helix/globset-0.4.9.crate) = 5f6ac590115e121ea3f88aa1b3a55a1c3822ac2c147e463fca0cf2abc519a580
 SHA512 (helix/globset-0.4.9.crate) = 66841495098b028b8d294c0832276b8864760df3a16b93b57222037c351591ac7773a99a65b85a20c438fbfc04c56ea4901188cb18ed470d3481eeef29eab708
 Size (helix/globset-0.4.9.crate) = 22929 bytes
@@ -129,93 +294,141 @@ Size (helix/grep-regex-0.1.10.crate) = 2
 BLAKE2s (helix/grep-searcher-0.1.10.crate) = 16afc3b7e4ddbaf70e92b91a3ca2036881e8ab0d7819d066de071041f6e12af9
 SHA512 (helix/grep-searcher-0.1.10.crate) = c1e085e85cc20113c9c26750b31b0fcfb8a67b3340a379fb40154cea35ea42269f944ea539c0f8e1db372e64af1e8593b46dd2835b7ffd3fcced117c8af39b88
 Size (helix/grep-searcher-0.1.10.crate) = 44856 bytes
+BLAKE2s (helix/hash_hasher-2.0.3.crate) = 6a33a78825d664aa2e4343229935565c2199488da32a20b74da03b09f41e3067
+SHA512 (helix/hash_hasher-2.0.3.crate) = de542ae43796fdafb843c9552d812e325cd8e8ca66f74c463ccca730ac556bb210885c16cce1620fead52737825b754d152abc333d8caa05d9be59e540015895
+Size (helix/hash_hasher-2.0.3.crate) = 11057 bytes
+BLAKE2s (helix/hashbrown-0.12.3.crate) = 333ec43a87815091d115d166101d9719d9b951279aea1a2050e6c49813d5a79a
+SHA512 (helix/hashbrown-0.12.3.crate) = b3700fcd659a21a6b9b3777c18b37a83bf25542b4e8f2b963779a122f5d22e1742c064cfc03e649583e7dd5c6e90ca8407f8c51a0e8755f6a108682853022f76
+Size (helix/hashbrown-0.12.3.crate) = 102968 bytes
+BLAKE2s (helix/hashbrown-0.13.1.crate) = f56d8a2b1470eac750266bfaf44b1e8207256741c0c9000dc3352bb041c0b646
+SHA512 (helix/hashbrown-0.13.1.crate) = 12cc6276a89baad27c1de597aeabfef96798304a34101adaa22e67659656a9e5776bfac5ae68e5cb50baa2e547d60351750d320a195147b1ae8dab4f2b335ae8
+Size (helix/hashbrown-0.13.1.crate) = 105004 bytes
 BLAKE2s (helix/hermit-abi-0.1.19.crate) = c731a42a9056a75a3ba26b5ab02c7c60c1fa2f21635d4152de66dc2eb407e097
 SHA512 (helix/hermit-abi-0.1.19.crate) = 1c877fcd562b15d2de9c151fd6c5f3ea4bf48abcb799e6139a180ffad5d64b632f0000d5707bbd92ff23a0e5f349157b9e0f5be8b50f03680b0fa47315dbb78a
 Size (helix/hermit-abi-0.1.19.crate) = 9979 bytes
-BLAKE2s (helix/iana-time-zone-0.1.47.crate) = cf37107075f1cb612fdeccfcf951a0d68b5552f8122ea63ad7d7d851f3c85bd0
-SHA512 (helix/iana-time-zone-0.1.47.crate) = c1817555149f05ae45f7e54046b79c732f80f5af382680d626dd3e970167092cdc176b259941d3c1533518bef511a92ed24c3aa538897e9d082984684d99f55b
-Size (helix/iana-time-zone-0.1.47.crate) = 16974 bytes
-BLAKE2s (helix/idna-0.2.3.crate) = ab46cafcffb3e0d08ac1b12bdcfd56376fef089009965b6f36b1b0edd546a7de
-SHA512 (helix/idna-0.2.3.crate) = 1278bd561ce329e1dc7a6f24a10f83d9a068af5d15a088414f3921c6728b0d54f4d60d6f4d0d5a786596ad226263e1e50c3842f192d5758aa4665ba4ed5c269f
-Size (helix/idna-0.2.3.crate) = 271023 bytes
+BLAKE2s (helix/hex-0.4.3.crate) = 299902a1da9d88101e5b8b06dde30b77e8f7a802285aae519981ada5959383f8
+SHA512 (helix/hex-0.4.3.crate) = fd8ff33b68eea2d6f2c6b02a6d82a2807cbcdc209ca5a76e3e3e5d006917ee151f236b6d18e2646cc9a9674bcdda1d6ce6ee363a89cadd99bef00d0eea9989e6
+Size (helix/hex-0.4.3.crate) = 13299 bytes
+BLAKE2s (helix/home-0.5.4.crate) = 97bed7dc8640e5dbf14f9d8350f4b6c874473a92f6b23a79cb053bb7a1565cc8
+SHA512 (helix/home-0.5.4.crate) = 2494111301bd1281c89dc77f4f78d3bc6e3a04d1969938cf4584d465c01af12ad85022832b4a99a5c0ce6adc31a83c00820df2d513a09bf5c0d4fe44c53812a4
+Size (helix/home-0.5.4.crate) = 8538 bytes
+BLAKE2s (helix/human_format-1.0.3.crate) = cc4713846f14326fb33a9d6b9aaac3e1d308aaa69792e12c7151abfd0de8065b
+SHA512 (helix/human_format-1.0.3.crate) = a91357f791c136db826fc4704266b20d7acbbf681cf4b4c7e43ef3ae33f22a31bbbda13feccdddeb33619ceab61ff593ae431ad2816645e8a4d6c6d7b48dde77
+Size (helix/human_format-1.0.3.crate) = 6718 bytes
+BLAKE2s (helix/iana-time-zone-0.1.53.crate) = bc76b69317387a1427aa749614894a3066e0fd5b1132cefb72022d5eaa4f1a3e
+SHA512 (helix/iana-time-zone-0.1.53.crate) = a3f899fe9ebc7501bd22e75b2df34c3b26ad5a53afbff4fa552672d0185d8a291736c48ac2fa76dab36a6621e689b5584a2d7bd0334055994bb21077765aa7cb
+Size (helix/iana-time-zone-0.1.53.crate) = 20176 bytes
+BLAKE2s (helix/iana-time-zone-haiku-0.1.1.crate) = e73709445a1fb0ccfe08102a5226fae2e4303db4373ed8627bf7a0cb3acbbcbd
+SHA512 (helix/iana-time-zone-haiku-0.1.1.crate) = daa7570aaf5a07c990b07fdc2153b63d947598ed35aa9c35c4773772a6c67997143b120a18ff4c7c13474d296e81a92975ebf5b9aa9d204c1820e9629cb2e369
+Size (helix/iana-time-zone-haiku-0.1.1.crate) = 7200 bytes
+BLAKE2s (helix/idna-0.3.0.crate) = ce38eb711b7c9ad70b2f58c9e70c1edf065593fcc29a34d12af3ac130a5a35dc
+SHA512 (helix/idna-0.3.0.crate) = 9b7cee27811ee52ed9bb39fe82f724742eef2e5370642b6c756bd134c8cbc20bb6faa9f296053672dba8a66f7356a08b2ca99f176407b173e2d566d85d066441
+Size (helix/idna-0.3.0.crate) = 271128 bytes
 BLAKE2s (helix/ignore-0.4.18.crate) = 8572ea3aa32efc6b519aaa1637d0bff67c2c75d5ca3a53f0c79c2b7af757b4ea
 SHA512 (helix/ignore-0.4.18.crate) = 5d11a2415f015cce6ce72aa3d08a7cfb645ee7f1845b3445a924a92144438f209c992cc15d4ede3099d1eebe3fa28bde4e0eef1a3fbcb9dbced19a42051d21be
 Size (helix/ignore-0.4.18.crate) = 53174 bytes
+BLAKE2s (helix/imara-diff-0.1.5.crate) = 051eb81a2a2b26d7aa6ad40159a2b6875dae78dd2704d4b4c9e4a0cc907d69ed
+SHA512 (helix/imara-diff-0.1.5.crate) = 9c8254012958869cb4845f76d34849b140dd1604d14dc9822f969ffd66c32a94ae6151a1b11052817e1ef60fb94ec52ac9bd0a122b5a1e6a994952445e4d869e
+Size (helix/imara-diff-0.1.5.crate) = 154821 bytes
 BLAKE2s (helix/indoc-1.0.7.crate) = e5b36c9471b5542dc47b717c224ebbdc6423d8c2fc6f6f78ec6c06a05c0da891
 SHA512 (helix/indoc-1.0.7.crate) = b60e534953d600bc2de3d6951f9da67ca3ab3c78fdce3e9c5f91e544ca848aef0c22c35a26fe7a39c07bd916a79fdf496269fecfa5491a58e178f37b2965b348
 Size (helix/indoc-1.0.7.crate) = 13716 bytes
 BLAKE2s (helix/instant-0.1.12.crate) = b06541050e8fca335fbc4ea630c2e4b68d8c53a8195c406fd1afdf9d8292ba52
 SHA512 (helix/instant-0.1.12.crate) = fae494c00111c51c840f9dd6a10febe403e27ebb933dd16633a213e9c20f2bc11adeb431c71f8a6713bf88f270a010941e15d83df294e658791934f83a5d2407
 Size (helix/instant-0.1.12.crate) = 6128 bytes
-BLAKE2s (helix/itoa-1.0.3.crate) = 757860bbec6ff1d1de171bf1be02d712e736482c0978debdd595ee4030a5d5d6
-SHA512 (helix/itoa-1.0.3.crate) = 1290c027ec8a13d2d15ace2b58a1d1a3a18730cd5fb55bc995826b8f4d04ede650b8315a8905f6737c4c4988690ae03bf32c86ab3a31ae068a67d5be04cd618b
-Size (helix/itoa-1.0.3.crate) = 10481 bytes
-BLAKE2s (helix/js-sys-0.3.59.crate) = fa95e3a3911e35d9863adb3119f7f26a7d0daf65980995a4b59471d7cca88f95
-SHA512 (helix/js-sys-0.3.59.crate) = 317a0cbce8ccad741dfac48a09e326460bda68a58225bd8d2eb50ff50a7355016c399660e996b328bdbb77d12bc5107d4c2908b11441183f3b3d2f45eedbfd00
-Size (helix/js-sys-0.3.59.crate) = 78849 bytes
+BLAKE2s (helix/io-close-0.3.7.crate) = ff7f8a1187539e2a60bb4b96afa9d781d6159805b31a83c0d099176bb92724f6
+SHA512 (helix/io-close-0.3.7.crate) = 0cc06245da4ad9f8708ab03619734dda41d1cbb2777a7944df10e2efb0ed0a6d34aab3ee55210b05eb4507c802d01a301b6718ddd6cb8e2b4abdd2e1be11303b
+Size (helix/io-close-0.3.7.crate) = 8025 bytes
+BLAKE2s (helix/itoa-1.0.4.crate) = ab0312a13f0334af924aa09b538df57ac2728adc94f86f1f23a853737d00098b
+SHA512 (helix/itoa-1.0.4.crate) = a70bb6fbdbcab27fbb5a84041bcbad8e0c8fda58d55ca7ac757f7be5cd373101be40df99e9acd6ae49e637e40de037c6bc59560f96c9adeccb2b2e0bf6531e42
+Size (helix/itoa-1.0.4.crate) = 10601 bytes
+BLAKE2s (helix/js-sys-0.3.60.crate) = 3704bfae29ccb6ae483c2c0ac495fce7ebd7c93cd10ce88623685dc80a598292
+SHA512 (helix/js-sys-0.3.60.crate) = 543dfd444539fad27bafcbbf112366f53d4ccf4bc63f8bb17820d818c3e1804656697ed6268a793f383ddf6b6227f7e9b3a11fb6fbb24e10732fdbd971801665
+Size (helix/js-sys-0.3.60.crate) = 79257 bytes
 BLAKE2s (helix/lazy_static-1.4.0.crate) = 0d5f7c2bcfe70610bc27bd6b339ea3e4ca3b7014149714db3a0c199ac6f07cd1
 SHA512 (helix/lazy_static-1.4.0.crate) = e124c0521ec7c950f3c4a066821918da7a9c6e711115d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8
 Size (helix/lazy_static-1.4.0.crate) = 10443 bytes
-BLAKE2s (helix/libc-0.2.132.crate) = 42a1d49507b86aa56cbe322fd8aeb22dabe1c6989399f7e3c2610c913fb8c8ee
-SHA512 (helix/libc-0.2.132.crate) = 48340dd173ed4d487f6504f4c32cb3c13dac8ad4da95469c8dd79386a7564d258a9ca42ccf1b174154717bafc1d3551b87c8fe35f7e4e062c8e33da9259fec50
-Size (helix/libc-0.2.132.crate) = 595317 bytes
-BLAKE2s (helix/libloading-0.7.3.crate) = 2bb9ce69e9f6c380777b93986d3cf24b678f232cd5d03819077ae0d8ba123e2f
-SHA512 (helix/libloading-0.7.3.crate) = 58da6e73f86aa05132949939507a128188ec2e26e2245e23b1534d90673c9909c7d5220aa4aeab2c16249f7433b4d0f98f20c94b8b1f7434c7abadc8b8039ae9
-Size (helix/libloading-0.7.3.crate) = 27378 bytes
-BLAKE2s (helix/lock_api-0.4.8.crate) = dfcff8523566fd93f5f9f617e152d108093b52432a63ac11b30c665a529de37a
-SHA512 (helix/lock_api-0.4.8.crate) = 2dd90be33a732cb8111b522cf65fbf37926ab3121c4dba20dbf66403805575ee597d90d776807c13be1a48ddc5920a691ef78dce734adc6a26b52d4ad44b9785
-Size (helix/lock_api-0.4.8.crate) = 25677 bytes
+BLAKE2s (helix/libc-0.2.137.crate) = df0c0326e047670d2ca04077985b480d5bf6881a099ee20d7d4c3689d305bfc7
+SHA512 (helix/libc-0.2.137.crate) = 1ef979dc59a7ec4aad7229ec5b40be0ec9a8496c7a2177d325db62f3eab00d72c8d2277d517c0093e0750de12fbb4e45b67133604afeef9153b8e1d4aa0baac4
+Size (helix/libc-0.2.137.crate) = 606185 bytes
+BLAKE2s (helix/libloading-0.7.4.crate) = 029be73d584decaef5215b30b57a8a21d43a0a1029f26b9c5cad4ba978c2e393
+SHA512 (helix/libloading-0.7.4.crate) = 34439d9eca68bac8fcbe2bc94a70e07550e7e95d713ab74ed60ba6736ec807fd9c9135c178d436fbeb39afb074b2a9b05775d953340845c088f5f8712f5f56a1
+Size (helix/libloading-0.7.4.crate) = 27580 bytes
+BLAKE2s (helix/link-cplusplus-1.0.7.crate) = 369d59d98206482ba0e4151d7b05bddad39e9a3b95d2b04f2c6526211decbe5b
+SHA512 (helix/link-cplusplus-1.0.7.crate) = c8fdf9ffb29cd0f8824bb4416d28f6f4fd7a024ce5056acbe63a680f975f50fc0cb408c0d0af04a37b6985bf15f78e7e7d1fc20a9c0f8b729e7ea696460d8c75
+Size (helix/link-cplusplus-1.0.7.crate) = 7576 bytes
+BLAKE2s (helix/lock_api-0.4.9.crate) = 9f025296f88561802dc51dd84b4fceeaf7365c404db7e4b404d194cfd825a0f8
+SHA512 (helix/lock_api-0.4.9.crate) = 9215381d9bb6b80d217c73a900db43df043b3e939b5bd7a292a02e9ab911cf0eacd8f883d35bdf72b3a0e78df8f1bc3e843ca4c775294c7a7a03091dc1a74990
+Size (helix/lock_api-0.4.9.crate) = 25685 bytes
 BLAKE2s (helix/log-0.4.17.crate) = 6994234f481cfe97b62255329a6c6f4a07dcdb193cc54d2c7ddda0519b41d214
 SHA512 (helix/log-0.4.17.crate) = 2477d88db42b1d92c30708d88823212e236f613b3465e85eb425f83f8d16fadfaf0352f06c2999a1852102edd2f6ffb10ecb539d8a3b6c48f552a25622ccffa2
 Size (helix/log-0.4.17.crate) = 38028 bytes
-BLAKE2s (helix/lsp-types-0.93.1.crate) = c9e267aa8b7c43e8690b9e9881ef18c62dafed5f1db4385f33d658dc05e5d156
-SHA512 (helix/lsp-types-0.93.1.crate) = 31fe4f2b0fb5991ebc21ccdfe7120a823a2613a01f4b5fa8ed14a1fe0c28fe69459852e3b691c9b3debf2c442f18b01f5b1ec1eb023d970dce14410f2d567981
-Size (helix/lsp-types-0.93.1.crate) = 58805 bytes
-BLAKE2s (helix/matches-0.1.9.crate) = d657fb7534ee934ab693dc86433fc23db4c6fd1fd46efe2e55a13c23a3d1d0b8
-SHA512 (helix/matches-0.1.9.crate) = 6a2809687d30ff04ea97bf9d1610d746e097699a4c3625ffd1b7b1e4a9673ece9d559058c9f760b99d6ab509024f7b338e7cfa6fe767499c983efa98bfb98305
-Size (helix/matches-0.1.9.crate) = 2246 bytes
+BLAKE2s (helix/lsp-types-0.93.2.crate) = e49e4df4cbd5641abff569d1f51873e46b499bb7236fd076f1b04fc5eeec8b48
+SHA512 (helix/lsp-types-0.93.2.crate) = 335378270454c629739f3ae2bf1dc5e9e7033c66010c24261f8f2b894f068020f9d9cdb475c3630dfc6deb1905f7d7fcd5111ea77060fed832c55b6bbfd1bf65
+Size (helix/lsp-types-0.93.2.crate) = 59507 bytes
 BLAKE2s (helix/memchr-2.5.0.crate) = afa77d7fdf25c72d251cda6b41f3fe065a748b101e3716aa65f0d6144f74da38
 SHA512 (helix/memchr-2.5.0.crate) = 444a163b484c233e78c0e2e4d51f01ce2da93d7d29f516a95e4b0866b20bdfd3f34137653abed53eb70387991ee3e2b5937d8d4360a85bbcb50a93005a75defa
 Size (helix/memchr-2.5.0.crate) = 65812 bytes
-BLAKE2s (helix/memmap2-0.5.7.crate) = f6363386d3bec8b0a74acb5bab0b0142a459c56bbffb7f1ee5e670690f09a910
-SHA512 (helix/memmap2-0.5.7.crate) = 467e55a193497749f3dc7ed228f85622d072e07929a0c76904f0aa7a605f7689188e2b980ab17737301656edfcf86d851a482088c2f73f2132421612bbf08375
-Size (helix/memmap2-0.5.7.crate) = 26229 bytes
-BLAKE2s (helix/mio-0.8.4.crate) = a1926e18c5e9a9d38cf15a538d9af969456d9d9310daeede2b70002d9bd98ee2
-SHA512 (helix/mio-0.8.4.crate) = b44675c90daa37336a25e7eef53cdc664e6f52590ed4955bac82641baf8099d3d94850da79d985255eb74b61a499b1ea4a9d7309f6ea4c41454b3dbb090b70ee
-Size (helix/mio-0.8.4.crate) = 93013 bytes
+BLAKE2s (helix/memmap2-0.5.8.crate) = f7b8d4329d7f327a6d9c8ec1d32cc2f92f229a53b01738ced2643b230a9fe317
+SHA512 (helix/memmap2-0.5.8.crate) = b77600f2ef65a7df24591b8d553decd66866200240303948f25690aaea755c401aca523482d310f7606999af454e3e43711148ef3709d570fcf4af117bab094d
+Size (helix/memmap2-0.5.8.crate) = 26592 bytes
+BLAKE2s (helix/minimal-lexical-0.2.1.crate) = 7868d0264ff2c8d6fd1944aac77710c2163c9c0bb7488ee70835966d9a324022
+SHA512 (helix/minimal-lexical-0.2.1.crate) = 385fab51884bdcc7b0f2728a219ab164d0dc8efe42160b918f2c09f79ecf853fb12bda006d11e649f097bae1499dcd41ddf2a8784ee7d178cf2c28059e46078c
+Size (helix/minimal-lexical-0.2.1.crate) = 94841 bytes
+BLAKE2s (helix/miniz_oxide-0.6.2.crate) = 40705e2707ac84ac57fc3cd07f78c1e6762938d377651212ed54c3297d78e96c
+SHA512 (helix/miniz_oxide-0.6.2.crate) = 250782e214572acdd11df87c2788cd5f78e8388d9b285d0a850918219678e262e8b9905cc88728f5b70d13920ef9d19c43d243dad8fbcc18f8c8462662ce1419
+Size (helix/miniz_oxide-0.6.2.crate) = 54536 bytes
+BLAKE2s (helix/mio-0.8.5.crate) = a1efca50e44ec8a84157d9e3def55fee88869e8c0383d599f573e5af48632751
+SHA512 (helix/mio-0.8.5.crate) = e92bbc1d06ad8d4311d76f878d514d0c91e47de2c511c54bb53096ad689012c3d1ffeec18e2de05a5f66c03ad83150cd45d31edd203e9b9522ece13be00bcede
+Size (helix/mio-0.8.5.crate) = 93993 bytes
+BLAKE2s (helix/nix-0.25.0.crate) = 608c85edfed944b56c366c4108b98f3930a746c9c71f74c658b88759e6650a4b
+SHA512 (helix/nix-0.25.0.crate) = 1a244469068946ac04e0dc83b8f6a578ebe70e969f232263736e4e9ec0d94fcbb54772c4dd570c4b0d1c2c7395af64b9e9a8a6f7eb7b97592b4a91ff948ac38c
+Size (helix/nix-0.25.0.crate) = 269825 bytes
+BLAKE2s (helix/nom-7.1.1.crate) = 347cce605f3edc9e6dd8f9c30b9d75e4216e959bfc9e9973987fa9e2393f3b40
+SHA512 (helix/nom-7.1.1.crate) = 1456efdbda4f5b3da6c8580721acf101ed7d779619ee0190c1df103244e405a8ffa0c3889901a2d8beeab0ab84074ed4c7cec5330c7cc2a5a3c30e36a2530be8
+Size (helix/nom-7.1.1.crate) = 115818 bytes
 BLAKE2s (helix/num-integer-0.1.45.crate) = 6851d06be3e09bf92658acd4e10dedfc9721516087e927cf26a95404d75a4ce9
 SHA512 (helix/num-integer-0.1.45.crate) = 731bdc09c3af7f9d8b171041f2957aa60facef93b06886000d8ba60d410aabbbee358d700bf31b2588b2e077464f290f24a0b712df7bb7f12972675b6c9bd735
 Size (helix/num-integer-0.1.45.crate) = 22529 bytes
 BLAKE2s (helix/num-traits-0.2.15.crate) = d26091cb6caaf8d70fbe0d045c852e026461499d2c9a18721a049bbeb0049d3e
 SHA512 (helix/num-traits-0.2.15.crate) = 5228498af0f15daeac3c9210f3e6e71cfaaeb30beea81dd37f8eb06b9592c8bf3226a47597cd8592ad4c513964a9a40f1ab2c33102ef3dfe3800d22c8d4528e8
 Size (helix/num-traits-0.2.15.crate) = 49262 bytes
-BLAKE2s (helix/num_cpus-1.13.1.crate) = 62977ab8aa05325460f20f92921eb7952552495415936271fa5fdd1aff7ec9c7
-SHA512 (helix/num_cpus-1.13.1.crate) = 91ffe0ec792228621d6c2d5cc544ef4744203d19fc9c86e0aad2610038c43aca0448b6c27d82979417a0f6c939ea73523303a44c28df0d1c1b8d09814d5306d9
-Size (helix/num_cpus-1.13.1.crate) = 14752 bytes
-BLAKE2s (helix/once_cell-1.13.1.crate) = ab93c03e004fa9981ac55e51b7e9564477d5765bd107d407a4a27df387a1ca02
-SHA512 (helix/once_cell-1.13.1.crate) = 492831607d12846923107b464a70de62f5997845faaae1625f3e54e2610e96b0355ce9e554051c2fae28f7e6e558ed456a6fc0b3c6a71b26f7443ede5eff5b32
-Size (helix/once_cell-1.13.1.crate) = 31335 bytes
+BLAKE2s (helix/num_cpus-1.14.0.crate) = 7cbec007b485092e3ecf7a4834182c865c0e88a4cbbbc8a4af617eba2da98a3f
+SHA512 (helix/num_cpus-1.14.0.crate) = c3b19f7cad14947c9860ed81617e2f7492f69248c8436ce83429cae9fe09d7be04c813233b54ca216e7dc2e03b76f46c5659154f89bb804e702f23b78feb3507
+Size (helix/num_cpus-1.14.0.crate) = 15673 bytes
+BLAKE2s (helix/num_threads-0.1.6.crate) = 16dafe947f10db7667201144859b311f1d2fdcaec5984b5f0986e8de75345e5f
+SHA512 (helix/num_threads-0.1.6.crate) = b2d9897e29e59353379b6372a629fc7f9afc89f777b4410eaeac7b4729527948a8dbecb175f056899f9076693ef855cc0d40e725cc54f28af588fbac5f7ce3b6
+Size (helix/num_threads-0.1.6.crate) = 7334 bytes
+BLAKE2s (helix/once_cell-1.16.0.crate) = cb65c0a9822af143ab9d8be1ecafe5a7f1f6b68d7bcf188a740c0eb1b209bce6
+SHA512 (helix/once_cell-1.16.0.crate) = bc199570ee43bde9245a2c4637ae738e370ce9988635c8342349ceb6fb158f376247b69f9ec4ea0e6d76b934decdc77a524299ebde96c0a2c2d29d9501b9a568
+Size (helix/once_cell-1.16.0.crate) = 32120 bytes
 BLAKE2s (helix/parking_lot-0.12.1.crate) = 6968a4adcbd417d1ae7674819c446c19488b7056b77259e31747d5ebad3298be
 SHA512 (helix/parking_lot-0.12.1.crate) = 07327d3b737a913508dffb66023766348ce7f9d555c224a099cabb05baefd16a28e15fec638e3a148a5169dbd980c4541b0f8820ae9d06dfe0704482838fbd5c
 Size (helix/parking_lot-0.12.1.crate) = 40967 bytes
-BLAKE2s (helix/parking_lot_core-0.9.3.crate) = b5155a5b464ec99ecea85fe719266276c050dc5124e18d0d9cc1ed9a62c49056
-SHA512 (helix/parking_lot_core-0.9.3.crate) = fa30db0fc73b268ab8395adb8bda35d12dc15363b247a95b7c4bb848ff9b8dbfb971a20f320b4feff3317d5b533c59b62152e4c652c1809a422c5671310b30df
-Size (helix/parking_lot_core-0.9.3.crate) = 32256 bytes
-BLAKE2s (helix/percent-encoding-2.1.0.crate) = 542ff6aaf4f75153656c4a30c8cbab03ae2f1bd09cb20379636114b9b4713a3f
-SHA512 (helix/percent-encoding-2.1.0.crate) = 98af4dfa7c6a3cf0d5aa929c436f9eb1ba1b576a944513f1284e6df2ad06be7cab9eba145d888d50af88f8c970bacc702b323041bec6d4fa1dc34095186c628a
-Size (helix/percent-encoding-2.1.0.crate) = 9748 bytes
+BLAKE2s (helix/parking_lot_core-0.9.4.crate) = e2028cb917b7625d23dd5b1845ace8a241d121c8eef521687e76a2a67357bb28
+SHA512 (helix/parking_lot_core-0.9.4.crate) = 6dae00356b759ad1dd08c1edbcc3ffcc86ad412af98a5e4cdf4fc622d0feb79bdb3900c4f72e76cce803c667a6d8581b44264980816ebdc85d59ddaa881a2990
+Size (helix/parking_lot_core-0.9.4.crate) = 32359 bytes
+BLAKE2s (helix/percent-encoding-2.2.0.crate) = d378c76723ad109df43501dfa379aceeff8f5ef85584def8e334145f53669b6e
+SHA512 (helix/percent-encoding-2.2.0.crate) = 890a5256d2b4290e12e04a02c3529f3a017faa2b6016a4dd0f08b36509f0b1107eacfcb4702024d6a21ff8852a11f263c1adc096b16ef8d12c45a734c087fe68
+Size (helix/percent-encoding-2.2.0.crate) = 10075 bytes
 BLAKE2s (helix/pin-project-lite-0.2.9.crate) = 21ff73557f52248f91876a765bc209e4313f3cb15746b3f3ceddeceea5e2c95d
 SHA512 (helix/pin-project-lite-0.2.9.crate) = cef0b77233adca712db1183f780732ea577cf1b27c2643de221d54c837c75ce749f907e24a967be7474812c7682cba613a3fc5d553a9578a1b80569da0e562e4
 Size (helix/pin-project-lite-0.2.9.crate) = 27713 bytes
 BLAKE2s (helix/pin-utils-0.1.0.crate) = 5a1cf546c08cd8ad36d3736e337a9865b694de6a636733d252a878aee8b1c204
 SHA512 (helix/pin-utils-0.1.0.crate) = 828422b8440cc82ac6b0743e0112fa7540d437aed457564999092b1462cd7672cd6b1f0201b67075431aeedd3d9c5127468a3dd028744109944f7f023c82fd70
 Size (helix/pin-utils-0.1.0.crate) = 7580 bytes
-BLAKE2s (helix/proc-macro2-1.0.43.crate) = 7b41b6730be99b9ba36457904882b4ba39e85e21513bb066243be2a27b850a0a
-SHA512 (helix/proc-macro2-1.0.43.crate) = 3139c668dbf593afeb77b970c77edc70f7b46b42d80f1d0e30773dedb14ab98c9eeca0dc953bc940610954860fbce663174ea6c270b8711db45aef4d57f3b910
-Size (helix/proc-macro2-1.0.43.crate) = 41512 bytes
+BLAKE2s (helix/proc-macro2-1.0.47.crate) = ef333dc55763f2a4f83c0f2c5abc653e565fc682dcbdacf61b4d892b1bd56a91
+SHA512 (helix/proc-macro2-1.0.47.crate) = 60c5d0dcbdee7ddab40664882d3cf5a868f7ea5b49ebab3b4419c3f325582b816625e73e0d1737bbd46bd7d765ece6c81c2ff4be894555d4b255f5cb9255e931
+Size (helix/proc-macro2-1.0.47.crate) = 41955 bytes
+BLAKE2s (helix/prodash-21.1.0.crate) = dd7dbb964102d425460858b6924a5e5a37f7149f8878d6c73476f23e7c40aadc
+SHA512 (helix/prodash-21.1.0.crate) = 867f075001d88e107e55694cd4450aeccdfc99116852e06eb4135d7bdd8fd71894c1b16d93fa7f1347f7e2f8b66b67ca48e0340e8de9107340fc036cc11e66ac
+Size (helix/prodash-21.1.0.crate) = 84006 bytes
 BLAKE2s (helix/pulldown-cmark-0.9.2.crate) = 554c6c01f3911fcdc3c1af58293429e6c41275d478b92c78db657563ca21f73d
 SHA512 (helix/pulldown-cmark-0.9.2.crate) = 2268a3284da5def75b906373a3c70927bc68ecde7b641231d96ff9437785732134568abaf0b6f81c582dc56498da4e677a7b2e2f1914cd42b345db0a06d75c60
 Size (helix/pulldown-cmark-0.9.2.crate) = 115824 bytes
+BLAKE2s (helix/quick-error-2.0.1.crate) = b5baa20597127843f2ea703488925348d57077126e4c5741bf35bc415b1489b6
+SHA512 (helix/quick-error-2.0.1.crate) = e028deb598466ae91663e5d090606be4f117662d0fa6e0c0b0043c7261f26787057e84e644cae72a45b1a0a7b1fb03fc9712faa3abee94b97ce2c8d25c365c32
+Size (helix/quick-error-2.0.1.crate) = 14265 bytes
 BLAKE2s (helix/quickcheck-1.0.3.crate) = 00d23a6629fde53de62fe9c0c3ecfb76d7dfeaac5a91cd41e466564bbf7d0f98
 SHA512 (helix/quickcheck-1.0.3.crate) = 07dd707c9d3fd0b9cedbba545bc8b4fc1ca2770d169e444f8c96f8306d3161a6a3e9189cc5d0d6b3dc4221f7dbc05887dfe2dedc914f88d5e69ab2b94179185a
 Size (helix/quickcheck-1.0.3.crate) = 28069 bytes
@@ -225,33 +438,33 @@ Size (helix/quote-1.0.21.crate) = 28030 
 BLAKE2s (helix/rand-0.8.5.crate) = 12fbacd2e6f4743eb56bf132865ad6d2c58d567f1c689fd646b488b863b9eb38
 SHA512 (helix/rand-0.8.5.crate) = 8b33a8988906ba5e2057a9a84bdd11f867a5536c22f5056eec59ed4ec4e3a6da2fd773da4c0510d343762e5a4ea0f007db4c4a7cef87a47f90e36c1a84d86fb2
 Size (helix/rand-0.8.5.crate) = 87113 bytes
-BLAKE2s (helix/rand_core-0.6.3.crate) = 227719def6b8444614f9982b4f761c2d654e08f7f5147f7b9ba6a1468bd758f6
-SHA512 (helix/rand_core-0.6.3.crate) = 0fc31f96ca8ebba8c179367de01458e909265e1d627ec0c5620be7c8e83d2f9570471d6ec2cb2bc4bc531505b02fc31f1165708cc1357906791c87123b06ee87
-Size (helix/rand_core-0.6.3.crate) = 21938 bytes
+BLAKE2s (helix/rand_core-0.6.4.crate) = 0d23245a02d2c434b28af3a0ef8fe79b824ac79a8fb84f1c90a68a5bf5bfb6a6
+SHA512 (helix/rand_core-0.6.4.crate) = 36c67eb845aa2ccca49d6d680f28d418229bbc5a050729e487fe6b9f9f384fdd7b8d67fc6508b90b79ffb3c26688e72feceb3ecae57d3d7f59338aeb62296f79
+Size (helix/rand_core-0.6.4.crate) = 22666 bytes
 BLAKE2s (helix/redox_syscall-0.2.16.crate) = 5d05ce546323fbcedb872cf55da0403e1ae5c6fc354eb2adf263bf7d671971b8
 SHA512 (helix/redox_syscall-0.2.16.crate) = 63b5d876baaf99f5cf737679bc6ac7a9e3d8a41aa93f5c59416ce7e3841e2513bff678773553cfe62fb452707f82acc384ea63aec932a31bf94679cd1caddd27
 Size (helix/redox_syscall-0.2.16.crate) = 24012 bytes
 BLAKE2s (helix/redox_users-0.4.3.crate) = fafe5c327db7de7f8b6340807a14fb60bdea5ac74634a60379b62c4793cb447b
 SHA512 (helix/redox_users-0.4.3.crate) = 0d3366e23cf93e1b0e025a29025eaebfcd1145bd158e2663b94fd952dc2d8a25566819e3a03c4136ca16a6408d37396e2ead0814c3f0c2bb10334dfd0b838fda
 Size (helix/redox_users-0.4.3.crate) = 15353 bytes
-BLAKE2s (helix/regex-1.6.0.crate) = c7c925a5e0978d7b7f7ecbffcf550553fb6b81bffb4c5082d9784752e8387bb2
-SHA512 (helix/regex-1.6.0.crate) = b4861c9cc13d6fb224f67057fd3522f04576591b3d7ae0d3581dce42ca2b2bff96860cf2a7f4dfab00e46a1d29e6473f6723c4aeb02e34ed6d5f205b66f07876
-Size (helix/regex-1.6.0.crate) = 239329 bytes
+BLAKE2s (helix/regex-1.7.0.crate) = 0f6f6571b988a598d86db223a99d498f22ca75e63db0db99799164294292ff69
+SHA512 (helix/regex-1.7.0.crate) = 974c15a593d86c33e0bb34f7a67957fe96dec07b3752f2b6b968d657845f5d2342a5ee9ec1359109c43e4f46c9b2b2b678d59f7b752455a0ab1435c1fa56ca3c
+Size (helix/regex-1.7.0.crate) = 239421 bytes
 BLAKE2s (helix/regex-automata-0.1.10.crate) = 283615bf1114bdcf5a2ebd639ba1889a8a9a0195b566f41226f7e0961f3d5d81
 SHA512 (helix/regex-automata-0.1.10.crate) = 56d64da361afce82c6cb49e70b99ce1fca3e1969c54bba5f9971db135f8544c65f49feb8827789947b3d1dcefc9c49a7a434a7ffe0d09c5900345a1733723c5f
 Size (helix/regex-automata-0.1.10.crate) = 114533 bytes
-BLAKE2s (helix/regex-syntax-0.6.27.crate) = 93164b4d8d87ca3e2c0453a8c905fa5f635b51cf165aac2ac8e5c2c4fa74aeef
-SHA512 (helix/regex-syntax-0.6.27.crate) = 5cc705a5dda08cbdb4dbcf3fa98763cadcda13d9c3ba407b35f3e88d77935efc2704bb40b3fb5aad7dfbad0df43bcb4c4cad9732defb954e2228a0739f7c37c6
-Size (helix/regex-syntax-0.6.27.crate) = 297300 bytes
+BLAKE2s (helix/regex-syntax-0.6.28.crate) = c40298ba14ce3896bd03d232d78063b4961c18b64ce8b02efdb131a33d8843e2
+SHA512 (helix/regex-syntax-0.6.28.crate) = ba5fb1622a330b67a4eb820551c7f20dbfdc6b38eb697b9bfddea4cf0060b473472045e93aaf6cb9727ae609e06ed285e1e42f06f34ac730ac39fb90425bbe85
+Size (helix/regex-syntax-0.6.28.crate) = 299288 bytes
 BLAKE2s (helix/remove_dir_all-0.5.3.crate) = 1c3501d77c00011b5c303ca74013c37e39700786c370d0891f8114759e4e6b4b
 SHA512 (helix/remove_dir_all-0.5.3.crate) = 50417d6d8a33912193a1ed37eb72b47431b12ae65d2780cdb7080c3d141e63819da13751c3fb737685cea322f70b36d413389c3dc01aa12b4dce615aefed0e2c
 Size (helix/remove_dir_all-0.5.3.crate) = 9184 bytes
-BLAKE2s (helix/retain_mut-0.1.9.crate) = 0e7efb4278833f9dc3e35ad9cf9254cbf4c9a60184b6b48cb6c9351b1921af05
-SHA512 (helix/retain_mut-0.1.9.crate) = e4ff39445a1fd6f0456055a9a12b55f7b6f61e2188495185d133801ba4397811b2d0e7857457564e40e92fab1db622df8d09a140062e1caa548d48abf7fce2d1
-Size (helix/retain_mut-0.1.9.crate) = 4058 bytes
-BLAKE2s (helix/ropey-1.5.0.crate) = a0bc0a852406921bce906501292e80d5de833607a3c8be332628d770434474ec
-SHA512 (helix/ropey-1.5.0.crate) = 6d9a3b7e68582ba14865f1ba1f668da6304e0b8c1c69c403e5a036a07d5d10c2d9fef57add78e487d1444798ee5bce0eea9ac46211078ad27d0394c9c8572ffe
-Size (helix/ropey-1.5.0.crate) = 106401 bytes
+BLAKE2s (helix/ropey-1.5.1-alpha.crate) = 066c27967a8b9d3cbd42b42b0ce211f96bdfdc2e74a09cd2400d5c9c36086e1d
+SHA512 (helix/ropey-1.5.1-alpha.crate) = 3ec8d6645e2433bd55ae5c49e5035004e2431dea511e90287ec2a4387de802370c24e978e6592ab093a3292184d80812c778dc1a233466a94e6e32e4740d6b23
+Size (helix/ropey-1.5.1-alpha.crate) = 117298 bytes
+BLAKE2s (helix/rustversion-1.0.9.crate) = 163d0f4a8f2211d9b41fd2d7e5a3f0faef340274215f5e1efe58a1e06202c1a3
+SHA512 (helix/rustversion-1.0.9.crate) = b2c116585816ee3aff5b21ac72ef05520ebb01fc164519e43407685c223ad5f2d3ded663c643a1f0e8150d334383c7504b701ea2708a570e5d7e29d98e2e7c61
+Size (helix/rustversion-1.0.9.crate) = 17425 bytes
 BLAKE2s (helix/ryu-1.0.11.crate) = c841c8e79156cd93f854becdd930c83978f5d2c0caef4844a04a900020b6fc89
 SHA512 (helix/ryu-1.0.11.crate) = dd2642aab2d3017c31432436226d5350b894c8b88a09395eb7de6350964b3cc48451a829ce78b04a9e4e0480076fe1bddd0604f4e57700faa2d60cac6e361408
 Size (helix/ryu-1.0.11.crate) = 47007 bytes
@@ -261,18 +474,24 @@ Size (helix/same-file-1.0.6.crate) = 101
 BLAKE2s (helix/scopeguard-1.1.0.crate) = d3884942354d25131c602303463c5686e520bd94daf216a810679acabf59b82e
 SHA512 (helix/scopeguard-1.1.0.crate) = 368fa5726df8f42b599993681579a9ffd0196480ee3cd0f9f671e8493f3bedd1e1779bdf2beb329e77e0005fa09b816e3385f309490c0f2781568db275d4d17d
 Size (helix/scopeguard-1.1.0.crate) = 11470 bytes
-BLAKE2s (helix/serde-1.0.144.crate) = 65adbd7e46303b9da4c6ca79a9b6f2639bd153d0a13b39031df2952e0b66b036
-SHA512 (helix/serde-1.0.144.crate) = d7388a40e4a5e0a65ec7b49193f2d53d758adcf26b98ca3bc6270351c7553add2f38a8434223a95826994c6d039dd91fc4f4020ce191410fe57bebd29e4938de
-Size (helix/serde-1.0.144.crate) = 76387 bytes
-BLAKE2s (helix/serde_derive-1.0.144.crate) = 0b5d7a89dd66a8996d96c8a62faa9bddcc473fd1399a796a24266c1e13de10db
-SHA512 (helix/serde_derive-1.0.144.crate) = d41208452b36b8d3f0644e58164c9c4e75f8cab2d8be09cfd1b38bdfc690e880a062e0eafe46dd4400d01f541b34c9acd3574504c4aa856afb00cfc2e9617a0a
-Size (helix/serde_derive-1.0.144.crate) = 54867 bytes
-BLAKE2s (helix/serde_json-1.0.85.crate) = 4c36adea38dd3b97868158824d6569ddecef68df2c72d710b596c27be7737f34
-SHA512 (helix/serde_json-1.0.85.crate) = b9ba5c8f5e5c977d31c720995317c99486897a064993784e8abd4e35e0c9ccf20d421552b4436cd88420b5e6fe1d7ebc411bbc2e803cf1732e133c29365834bc
-Size (helix/serde_json-1.0.85.crate) = 144635 bytes
+BLAKE2s (helix/scratch-1.0.2.crate) = 0754f3903494be33c84037355684c50a7729bd63ca2f7183ddb29296cd315af5
+SHA512 (helix/scratch-1.0.2.crate) = c3863dff0c67184605b356d6cc57db2bdf26cad9e0357ce6cbf7d3f23d913fa8917966a8c93b3084a3c9c900e357c6ca4bc2bc5ae5db3bb6feb5ee1ea5c61521
+Size (helix/scratch-1.0.2.crate) = 8152 bytes
+BLAKE2s (helix/serde-1.0.149.crate) = b501a04b9484aeeab1de44a85232af621bf82dcb1612f634c756960f46adfffa
+SHA512 (helix/serde-1.0.149.crate) = dc4ada7a0becfd7c5a1e8e7852454bea5074644a77e00886d87f9443aac1aa42b4662cd5705644cbcf7f6068e8eff6f3c5a5db076a022081fe558914a271bf13
+Size (helix/serde-1.0.149.crate) = 76702 bytes
+BLAKE2s (helix/serde_derive-1.0.149.crate) = 29e0eba650c298283fe0f05c1a14f4c79ab468200cf97509b2dddfc7156e54f9
+SHA512 (helix/serde_derive-1.0.149.crate) = d3b4f2b851d0ae87ffa99c1e11fbd49d2cc8ed5d88b89ba4854b9a2fff55009d85d0eb1357482a133bc34d11f5d39935e3d4fb2d8e61f49627e316733cce922f
+Size (helix/serde_derive-1.0.149.crate) = 55561 bytes
+BLAKE2s (helix/serde_json-1.0.89.crate) = ba78b0c7b8f67aee50eec959077a1ab8ff389deff2c7c99d3a0f52e05179b9e6
+SHA512 (helix/serde_json-1.0.89.crate) = 4bafa5693977e129f5787f2ff10f914e2a7740bf7e631bcdf51b27d0d9e5517873184b56649914371e1881107e7ed0a8fedf487617db334d4a7a4bf95c6c16a3
+Size (helix/serde_json-1.0.89.crate) = 144638 bytes
 BLAKE2s (helix/serde_repr-0.1.9.crate) = 9c42b2636359ee2b9a75068589b4ff5ad811e93cf7ac9028621a4b10f77c9a8d
 SHA512 (helix/serde_repr-0.1.9.crate) = 987d197c4e8326853281f4f8e3f1831c4591d0687429fc08191a1d39edf88261668047100156fe08b2beddc3b01fdcaba5a2a4e45eddffd19fe5cf3e6052f2bc
 Size (helix/serde_repr-0.1.9.crate) = 9695 bytes
+BLAKE2s (helix/sha1_smol-1.0.0.crate) = fcdd4edf63bd5bdcd46c6ecebb4939bf4393f2ccc50df1c726faee59069d2d4d
+SHA512 (helix/sha1_smol-1.0.0.crate) = 75d6809a2aafd47cd5f5888f42283985895a9c82b53ead7529a23cd6f2484f32654094dda7a9e5d93e82afc9d0049938def1bdc28803502d140d06a3496adea7
+Size (helix/sha1_smol-1.0.0.crate) = 9782 bytes
 BLAKE2s (helix/signal-hook-0.3.14.crate) = ac9086119f9f59badae90a83ae739a0993551d075e13ecaddea5e23f84c9eebe
 SHA512 (helix/signal-hook-0.3.14.crate) = 32ecf012e46b94d3a87f2e56cd4c03a97886013309a4e52ef3e7769ed14b49ae2814bb6346cfc9766525dcf15db4182d260d3c9311134e3e6f5301c58729442a
 Size (helix/signal-hook-0.3.14.crate) = 49446 bytes
@@ -285,18 +504,15 @@ Size (helix/signal-hook-registry-1.4.0.c
 BLAKE2s (helix/signal-hook-tokio-0.3.1.crate) = ed75c637cfc92248d226c90ec03749043a8e2ffb1a49ab60cbc1b6f9fa4d2a15
 SHA512 (helix/signal-hook-tokio-0.3.1.crate) = 14df27bb3b210480a26cedfc453cff92329f22f4783b2803482137abca396dd3c268ae114e54c6287b0d55e5f8f1a6851146b1623febf4ccf7f209ef4d83f639
 Size (helix/signal-hook-tokio-0.3.1.crate) = 7984 bytes
-BLAKE2s (helix/similar-2.2.0.crate) = bf2435d0fd66354a2bc6772e5d9dbedde1b22a6d788126cbb12ac5ceda289974
-SHA512 (helix/similar-2.2.0.crate) = 54d74e9003014683da0cc2b64788c5ac93d3d7ead418484ee5fab9d65395c8665336fd30cd4c9491fddc4e747959e1fd661862624e9b9c955b44de6e3bda7937
-Size (helix/similar-2.2.0.crate) = 50996 bytes
 BLAKE2s (helix/slab-0.4.7.crate) = ce56fe65abc2b46da86c70a71270e713d983c819f61458e84adffef505103574
 SHA512 (helix/slab-0.4.7.crate) = 659a9ca3323fc2cd236f6cb9eb6feeae8a1f5fa046fa239a34cd7a5ab8a7eadb9e5977e8d5cc41e9138900dd7c75ebc0601480771c5fdd2e084ee76619b82521
 Size (helix/slab-0.4.7.crate) = 16647 bytes
 BLAKE2s (helix/slotmap-1.0.6.crate) = d355535dea11cbffd024ccc525fbb29d4b88320391979c45c993aa947ba9eed3
 SHA512 (helix/slotmap-1.0.6.crate) = 1e0fad77d39cf937fbbf32913595e836b9d8067a81e8ad9a6653cdea023f2c8ce511c0216a1222c056e57419cdfd56977af7a6e83a9cc8b5708310a17353b145
 Size (helix/slotmap-1.0.6.crate) = 58954 bytes
-BLAKE2s (helix/smallvec-1.9.0.crate) = 6e8e99380278d160cdfab23047654630418866982e6909c5e84d7024ca27ec6b
-SHA512 (helix/smallvec-1.9.0.crate) = e7158393d4257564eeb8fa53a630fdfc13edb33f3c555e41606edcfdbe9189e5c59c25d255dd21d02d4abad1ab2931e21744ec6c2f91ad4db66f87e748a45e56
-Size (helix/smallvec-1.9.0.crate) = 28396 bytes
+BLAKE2s (helix/smallvec-1.10.0.crate) = 41329e6ed51a5092aa320d548b7b5f9f343f67bd54472d6fbc30a39ad5128860
+SHA512 (helix/smallvec-1.10.0.crate) = a09110184582dcc01d7a0d3fa8f74c17bf726935126d3654667b8e9c4bc43ad16ccfd8fa94feae7d9b31913aa7ee030fe5936e4b44a36302b6ce5fe37372a7ae
+Size (helix/smallvec-1.10.0.crate) = 31564 bytes
 BLAKE2s (helix/smartstring-1.0.1.crate) = 720a22c0050e9f6f4f4f6905c466e2b36828ff596137e859b845f58a1800108b
 SHA512 (helix/smartstring-1.0.1.crate) = 18e359d869bf006d49d6981c26a31ed73424c2734d8225c235b5f3c65124e5ca9d5f5bc95f4b190dc65746b73f31e2588bf9f50eb2b30535e5d05ebcd23ad760
 Size (helix/smartstring-1.0.1.crate) = 29555 bytes
@@ -315,111 +531,138 @@ Size (helix/str-buf-1.0.6.crate) = 3828 
 BLAKE2s (helix/str_indices-0.4.0.crate) = b1f763486afbf8f7c118f789c6fc36064c58ff2080dff631b9dc137a2d9c47f9
 SHA512 (helix/str_indices-0.4.0.crate) = 4c379f568147e3636519f2980a2e482061712e4fa713338be8a5497f78ce5bfc4961b10bf48fbbbd40c444b2b620b15e055271f89ca145872c136cdf5cca2db7
 Size (helix/str_indices-0.4.0.crate) = 17516 bytes
-BLAKE2s (helix/syn-1.0.99.crate) = 0731da91d0911274e95648b4108ac3b9d1a72aa8f01f598fe274b2b23b8f1743
-SHA512 (helix/syn-1.0.99.crate) = 47a9ec4d5e6702709c1069d1804d29880a1c5bbbed5a91c44e80eec657c62ceb223d6fbd942deef591463664766ae1997d154525f4e7a212bb84151418f40d10
-Size (helix/syn-1.0.99.crate) = 236084 bytes
+BLAKE2s (helix/syn-1.0.104.crate) = 2f9bbe7a67dd23264e0acb7822334f5196828799bc801f37b064e63ed1ea5030
+SHA512 (helix/syn-1.0.104.crate) = 8feabd8e6b1b5eb15077d7c92f0b3269e848d33b1f233b3df343b6d445ed332fb23e0222911a13edfd82cee969d25c43434268cd7a20ce1c0a608a1bbe327b29
+Size (helix/syn-1.0.104.crate) = 236683 bytes
 BLAKE2s (helix/tempfile-3.3.0.crate) = 3f8dfc1e86cc3d08789877ed1d8af54dbc0e3857031c552845d34df0dd35338a
 SHA512 (helix/tempfile-3.3.0.crate) = ba6faafb2dd56d694efe424752099a2efb50316afc0a4db9fdb7620ae3f1a31dfbb2a7b41724878cb977fa11f7568a406bd3b6a4f7cfc0b88b86b2cc616b953e
 Size (helix/tempfile-3.3.0.crate) = 27578 bytes
-BLAKE2s (helix/textwrap-0.15.0.crate) = 734e5db3c790dfa32c04434576cf457be02b7a9f4fedcdb343c84c37db1e7d00
-SHA512 (helix/textwrap-0.15.0.crate) = f44271c542c22f17a4e3a459255f95e6c02d999f7d6bc8414d3973fd4ac9353aa4ef436932a45340738126905463d776902715feaa9329371f8a14f14b5a7bfd
-Size (helix/textwrap-0.15.0.crate) = 52998 bytes
-BLAKE2s (helix/thiserror-1.0.33.crate) = a864e9048a8b0bc18e56bafea6429fe91bdc3ff8985cf1c80c6d299a56ec2a56
-SHA512 (helix/thiserror-1.0.33.crate) = 7bc7cba1e9beb48d8938c5f6b75eb7b3c2966b87d7adb3a29c1f28db94643fd6b630b4e17f4dcd8f544d1656b5e8ea89fff292f3017e73f0a1fec96461602b18
-Size (helix/thiserror-1.0.33.crate) = 17252 bytes
-BLAKE2s (helix/thiserror-impl-1.0.33.crate) = 346fa3444c182bde736c22abd173a410f78eabbd61857e2e6b544a480ae33c9a
-SHA512 (helix/thiserror-impl-1.0.33.crate) = e8d057851992abf0de9310d525efdd55bec6876d0f95e05868b08e0585fdce5b0514ec38fa88f3a717575ed2abf1b0d24e7c19b0ad2d9e64d21925ae2711402a
-Size (helix/thiserror-impl-1.0.33.crate) = 15429 bytes
+BLAKE2s (helix/termcolor-1.1.3.crate) = 883230b86f7f9bd79101af7c2fe83f0b3b76831712b963ae422d7609ee7c5f12
+SHA512 (helix/termcolor-1.1.3.crate) = 5838fcbfd70f300cb4b62aab50565db52074c56b152ccc8ac1173e4676c0d5a636271bf5a645a77da6e1d4edbf0091af2cd4dd6d73b85c3d198c760898c06f3a
+Size (helix/termcolor-1.1.3.crate) = 17242 bytes
+BLAKE2s (helix/termini-0.1.4.crate) = ee5222947c47f5ffc30048a3642c4ed43b60c1df5f4c7b97b7113d2a783b207d
+SHA512 (helix/termini-0.1.4.crate) = 0438abd20fec823772eb73140f6022e72c9c7b188722664577e51fb2bdc9e3241a3d5a5ea9363e51095475a8dc621aec635078ce0e7940712a830db757536971
+Size (helix/termini-0.1.4.crate) = 14093 bytes
+BLAKE2s (helix/textwrap-0.16.0.crate) = 92527aef066c919ec5fc9f3a7747e34bda1ae617254c65b963a0f728beb7518b
+SHA512 (helix/textwrap-0.16.0.crate) = 97ae8acece5663e1a6b08b827179e96d5ad0ee67d635888cc3d83454b52cf48fce97eb0eba374ba4747834099c74f43d66d9fec868e84be45369a42c1aaec2c3
+Size (helix/textwrap-0.16.0.crate) = 53722 bytes
+BLAKE2s (helix/thiserror-1.0.37.crate) = f4f34c9b53bc7ae89f19cd4660913a5275bfb16c974b3c5d780b3979e54c2a9b
+SHA512 (helix/thiserror-1.0.37.crate) = 07f0cf9da1bf1029d70c1b6f0c54bc41ed759214683f35cf6b321ec2d69173e3da0abf80a692115a1e4630400b1fbf462878053853fdc6026edb40f7e13be72e
+Size (helix/thiserror-1.0.37.crate) = 18752 bytes
+BLAKE2s (helix/thiserror-impl-1.0.37.crate) = 2e6001fce56c8d2e773d70e87dc3db3c5b31881174cca0595b112a35dc585f68
+SHA512 (helix/thiserror-impl-1.0.37.crate) = 37d90875118fe45b51afa89dd0acfbe4d9852b899ad391b419b5181a92bda115cf5569ffef57caf6020964d5d847c2b1f191c99e2c0caf7d4166f531bd19f952
+Size (helix/thiserror-impl-1.0.37.crate) = 15428 bytes
 BLAKE2s (helix/thread_local-1.1.4.crate) = bfe0b6715ed4534b4ce88a19a6ca1bf287ed0943adad0d6f65c9e0e8ab4dcf6b
 SHA512 (helix/thread_local-1.1.4.crate) = db7ff3eb88a73d9313dd58d72397614c5aae6be1d64ead7f16535cae2857be3b27d189e7955308591ec64a0d67777fd2a62a2b124ca73facb9a2d8e0458bdbb5
 Size (helix/thread_local-1.1.4.crate) = 13106 bytes
 BLAKE2s (helix/threadpool-1.8.1.crate) = 3b1cd779432c3dced17a5d7aaa29014d54c5e3b90eec68d4d2f687b43d6c1c1f
 SHA512 (helix/threadpool-1.8.1.crate) = adaa5aecdeec25848af15b160e5b39833978454d834974211bd586d81837f2ce89e5590f08b7e0d4868346cf57056913a5d41bc8bf92b89109ed769cce4a8be0
 Size (helix/threadpool-1.8.1.crate) = 14408 bytes
+BLAKE2s (helix/time-0.3.17.crate) = 61e39855b163181589dad80885e7c7058adeeea1f016702c6b71af1482bc4fb0
+SHA512 (helix/time-0.3.17.crate) = c69ec373a79038315d0257203be16539f5efcfc0ceb9ce2cc0413f3d6ab6ff39881720c310f12cada17536ccecc4501f081890290d15282514b26fafc02abe69
+Size (helix/time-0.3.17.crate) = 99048 bytes
+BLAKE2s (helix/time-core-0.1.0.crate) = d6a99aaf7348bfafa37764bd3ab26ffe3bb7f200428bf4e85c2bdbab9d1f5e9e
+SHA512 (helix/time-core-0.1.0.crate) = f7e181a40a0052d7aedf78219a46f8876618342c710e819748a87a5bc0728e5b2fc7ba08e38ebfa6a17d6fb60382003bb35745ff1eabac1c8f8b47d186a383db
+Size (helix/time-core-0.1.0.crate) = 6597 bytes
+BLAKE2s (helix/time-macros-0.2.6.crate) = 3a9871c365d2a4c4ca515da48ff7fd66ab4b353b62e99dea54a8c5257a62f3fd
+SHA512 (helix/time-macros-0.2.6.crate) = 5b6877ae37c602ffcd4d1f1367ab2c28bc906ee9635218fc01e5ec3b74e3cd14873f9029ada835f8658c04ca7cdf628a6c088a191119d4bc459b4c37e1f0fd10
+Size (helix/time-macros-0.2.6.crate) = 19163 bytes
 BLAKE2s (helix/tinyvec-1.6.0.crate) = 8b80d302f82b55581456246bdd3450b416b691513ffae386fd97d9808c05ebde
 SHA512 (helix/tinyvec-1.6.0.crate) = e5acaf353c58c60ae5556130a934f1048abb79cf6668ae467d308bac44b689d8a9997227ea879f4b5fe50f29cde8761801b088d7149bcd063b973056c381921c
 Size (helix/tinyvec-1.6.0.crate) = 45991 bytes
 BLAKE2s (helix/tinyvec_macros-0.1.0.crate) = 2951b7169bfce63db3ca0a9b5dbc68f530e664ffe2a59105d9c3cb68ca4d5603
 SHA512 (helix/tinyvec_macros-0.1.0.crate) = d6afc83a3c70cde916a6ff599e2772588e4bbfa7a5b1c7e5c8aa0f4a8a5c9426182497a644e4a88194ece986d38fa64b6c8eda9eb1630441c8e65a8741a45873
 Size (helix/tinyvec_macros-0.1.0.crate) = 1817 bytes
-BLAKE2s (helix/tokio-1.20.1.crate) = 7776b7b038d0f5077b98764236a071c7375be349d8815845f307a3fd205c2ace
-SHA512 (helix/tokio-1.20.1.crate) = f0544832fd306bc71c45db7f3552961b1a57882546a23f008fd806309339e2da654f712ccbe90fd2e4fa52cf2585ea6112de4e59879c98e34ac4b2b2aad24666
-Size (helix/tokio-1.20.1.crate) = 590375 bytes
+BLAKE2s (helix/tokio-1.22.0.crate) = 14b64b49504aa258a217adb8ed7c9e6ceff81f6317accd53f6b228b649f5c7d8
+SHA512 (helix/tokio-1.22.0.crate) = ac1979128e900fc43d5ea646e2ca5df186d8ceb30875c1267e4e5453f275de84aa7f20de0c110b4e955b7a4ee028e9ecbc905866ca53a12332b521a8cdbcc9c8
+Size (helix/tokio-1.22.0.crate) = 616583 bytes
 BLAKE2s (helix/tokio-macros-1.8.0.crate) = 5098271b6d445c1f2764ff825b744e0a9eb7d72b550a222d0bd2c9ed75d1419a
 SHA512 (helix/tokio-macros-1.8.0.crate) = 3fa620db09a8e911a2896c5c671494d3f5894b4014e868374e4f1331829975b287499c2f7a7615bf26a6b9abb3815b459c1fa684a738ea153ce09cecbfa57bc2
 Size (helix/tokio-macros-1.8.0.crate) = 9346 bytes
-BLAKE2s (helix/tokio-stream-0.1.9.crate) = 2dafce538f7c69ddeadccd9757f998f49b3b5fd0304a063d1603fb57844b2c54
-SHA512 (helix/tokio-stream-0.1.9.crate) = 8fc651a761eed2dc6e5ab7b9eef932438c78873f910852da6e0364cf5e7a56a2d1573f5fa882232a6159ced0382bc6df3409ae206613b33f4889c450b5ad3549
-Size (helix/tokio-stream-0.1.9.crate) = 31779 bytes
+BLAKE2s (helix/tokio-stream-0.1.11.crate) = 9da6a66133d1f69a37409a7b589390f3508f76b952741590541cea057bcb84c2
+SHA512 (helix/tokio-stream-0.1.11.crate) = 4fffb2be939c91a2ae935ad4b2f53bb0e94cd94397a261852ca7bd8b5e334b55c6dfe25277f855015bbac9219e4ad1005eaa0531ce62740bdd694e1a07615c98
+Size (helix/tokio-stream-0.1.11.crate) = 33918 bytes
 BLAKE2s (helix/toml-0.5.9.crate) = 47ed3419b2f8ce5103881721e73fac378a7efd6ace9098234a02f518fabdf35e
 SHA512 (helix/toml-0.5.9.crate) = 7151bcafbe2bdb1d2bb91562daebd357c884819af047843f1b4a56bc3812d4153eaf70683d0f9bff51bd1048700920322d64d41da13ebb4cbf34f0f7822d7ce7
 Size (helix/toml-0.5.9.crate) = 55667 bytes
-BLAKE2s (helix/tree-sitter-0.20.8.crate) = 3f7379834280a4ffe2d5aa311d1a1ad7f3fe96d7ee20fb5016c9a9cb24d0c385
-SHA512 (helix/tree-sitter-0.20.8.crate) = 9afff69271c940fdc8a78f6a656028072dda625d5fd6a82ca40b3bb2613672f63c310a2fa63aac7dc04bdf6e0ed1608106f4fdfd0fab288dc2d218bb462dd13f
-Size (helix/tree-sitter-0.20.8.crate) = 131599 bytes
+BLAKE2s (helix/tree-sitter-0.20.9.crate) = f2b05edf2121814c71c257ba615f7a60866a1ead59dc3fb9e96dac0fc42df441
+SHA512 (helix/tree-sitter-0.20.9.crate) = 03e38b5252dd94b65c096ba9d07e6aecbb582c8460e2f1e0ad46122e372be7139462d7c411094ba557abd6566bd89faeaf7ff01bddb9283d2d7285d13e38c5a6
+Size (helix/tree-sitter-0.20.9.crate) = 132102 bytes
+BLAKE2s (helix/tree-sitter-astro-5f5c3e73c45967df9aa42f861fad2d77cd4e0900.tar.gz) = f11fd3f362681d90d358849f45db79778219d6ca26e2133603964f0b9f072982
+SHA512 (helix/tree-sitter-astro-5f5c3e73c45967df9aa42f861fad2d77cd4e0900.tar.gz) = 
968337c566b9c38766820f65863c5e87943e964c37182881e3ebbcad197fec00098be6752c4e9175783df749dee88c5586a6941b2f7370cbdab71409007cd42b
+Size (helix/tree-sitter-astro-5f5c3e73c45967df9aa42f861fad2d77cd4e0900.tar.gz) = 23424 bytes
 BLAKE2s (helix/tree-sitter-awk-a799bc5da7c2a84bc9a06ba5f3540cf1191e4ee3.tar.gz) = ef4304087d84e105be0f8d60e864128773f893a1e59bb0fd72e79c324c69c357
 SHA512 (helix/tree-sitter-awk-a799bc5da7c2a84bc9a06ba5f3540cf1191e4ee3.tar.gz) = 
d37a67b12840892d7c93ed7246062be9c34fbc088067ac337850eed73c5d80437456155f64b8deb6f338e77e22a432dd1ff45edcb45c7f204c59d4790a493c05
 Size (helix/tree-sitter-awk-a799bc5da7c2a84bc9a06ba5f3540cf1191e4ee3.tar.gz) = 140974 bytes
 BLAKE2s (helix/tree-sitter-bash-275effdfc0edce774acf7d481f9ea195c6c403cd.tar.gz) = 7738ec623dd67db2a0efef8500b507947f175ae1f05f362da85ceaee633aef6c
 SHA512 (helix/tree-sitter-bash-275effdfc0edce774acf7d481f9ea195c6c403cd.tar.gz) = 
e3e646b4b0ef35974a4bc4f52eddea4c43a03683ca66df09b9d79650033ac2c7a02553c07c4601ba2042cc748cd962236b16f4879ebf4e10f60f17fc1b45dba2
 Size (helix/tree-sitter-bash-275effdfc0edce774acf7d481f9ea195c6c403cd.tar.gz) = 216771 bytes
+BLAKE2s (helix/tree-sitter-bass-501133e260d768ed4e1fd7374912ed5c86d6fd90.tar.gz) = 98940d7f6f53dcc4688f5c56edd15a9a1fda43bea60372b82cb7ceebb283239a
+SHA512 (helix/tree-sitter-bass-501133e260d768ed4e1fd7374912ed5c86d6fd90.tar.gz) = 
6edd46a21498dae861d3376a79ab887147d719b5af969b562488cc7576985b93bf8f2360bb6d7555b5c1dae5ad1c1f687dbdf9173b6fefb6d2c63c4d98541fba
+Size (helix/tree-sitter-bass-501133e260d768ed4e1fd7374912ed5c86d6fd90.tar.gz) = 37945 bytes
 BLAKE2s (helix/tree-sitter-beancount-4cbd1f09cd07c1f1fabf867c2cf354f9da53cc4c.tar.gz) = 80bb29c3c6ac38a5657ae3c2265f1a4b4e0ad1caa37798d6d2af5262447faf05
 SHA512 (helix/tree-sitter-beancount-4cbd1f09cd07c1f1fabf867c2cf354f9da53cc4c.tar.gz) = 
a8112402996fd707412c09571fd1de9ce6dd3c8e4b2ad0c28298a99c0cd17df86ec5abc414e2ef00d66151adc932c0a8f3a2077748c800e3ec433e296e076145
 Size (helix/tree-sitter-beancount-4cbd1f09cd07c1f1fabf867c2cf354f9da53cc4c.tar.gz) = 56767 bytes
-BLAKE2s (helix/tree-sitter-c-f05e279aedde06a25801c3f2b2cc8ac17fac52ae.tar.gz) = bca8668be442bfc6d5a225f37337776d9e80d6d50db1bce1ff640ffd454dc74f
-SHA512 (helix/tree-sitter-c-f05e279aedde06a25801c3f2b2cc8ac17fac52ae.tar.gz) = 
8df2a0f2e32c249cd78108908b5d8806f23b9044f0909ba3de134a4fdd72be98a92bcc5bae874d64aa5bebe1911df8bd765a09c1b41dd91e8575ffd6dc746e83
-Size (helix/tree-sitter-c-f05e279aedde06a25801c3f2b2cc8ac17fac52ae.tar.gz) = 226461 bytes
-BLAKE2s (helix/tree-sitter-c-sharp-9c494a503c8e2044bfffce57f70b480c01a82f03.tar.gz) = e3b6346d3d08ceeb14d0428456f160224530bc423cfd1bc5b83095b04bb1219d
-SHA512 (helix/tree-sitter-c-sharp-9c494a503c8e2044bfffce57f70b480c01a82f03.tar.gz) = 
75641486a702ad5b386ed0abd58f9f5fa4be9148eeebb165d549c55612b83e3480942a1021997cbf6426980924a06cd0566a279a4d2aac069086d9f012319929
-Size (helix/tree-sitter-c-sharp-9c494a503c8e2044bfffce57f70b480c01a82f03.tar.gz) = 908520 bytes
-BLAKE2s (helix/tree-sitter-cairo-5155c6eb40db6d437f4fa41b8bcd8890a1c91716.tar.gz) = 075ff52c0ed0368a6acc376a3a0686761a3f20b44977fa691a3ef52ec9d2a1c3
-SHA512 (helix/tree-sitter-cairo-5155c6eb40db6d437f4fa41b8bcd8890a1c91716.tar.gz) = 
4c53eea44b7cf51fca8993edefdc4dbaa51684508f8541a0942fbee2b69669b3a931458d6c5d8d9aa30b8051e694782034d98f8a9b1f3f177a5769efc4fb90a0
-Size (helix/tree-sitter-cairo-5155c6eb40db6d437f4fa41b8bcd8890a1c91716.tar.gz) = 55841 bytes
+BLAKE2s (helix/tree-sitter-bicep-d8e097fcfa143854861ef737161163a09cc2916b.tar.gz) = 8553dad7a7c68d76861e893845ff03d3fdf59237eb8fbeceae500554d9cfc9ac
+SHA512 (helix/tree-sitter-bicep-d8e097fcfa143854861ef737161163a09cc2916b.tar.gz) = 
fad8133e6bf175f2877514066d6073b6fa8b906affdd7392275b02b00f22dd51b7a541b3a0468e14ede5ef09a8099ecd579e2cfd41e2a788768c8dbb375a5205
+Size (helix/tree-sitter-bicep-d8e097fcfa143854861ef737161163a09cc2916b.tar.gz) = 42651 bytes
+BLAKE2s (helix/tree-sitter-c-7175a6dd5fc1cee660dce6fe23f6043d75af424a.tar.gz) = 257bf4e7929e75cbf6dd496ab053f8f5a02080712a7654c3f84b7dfced706e6e
+SHA512 (helix/tree-sitter-c-7175a6dd5fc1cee660dce6fe23f6043d75af424a.tar.gz) = 
95e6220dea3e06d6be0d4cc621e874ca782b5073009a30fcdbee744185f398c1fe1b6033a66a6f87f0da7aa59d3dd2d9560b507710213e8b1a40213e2d2bb58f
+Size (helix/tree-sitter-c-7175a6dd5fc1cee660dce6fe23f6043d75af424a.tar.gz) = 249834 bytes
+BLAKE2s (helix/tree-sitter-c-sharp-5b60f99545fea00a33bbfae5be956f684c4c69e2.tar.gz) = 8b7381e3e3f323c0bfd9f492cc27d625bfb618fb6d69486c431990ecbd076f7e
+SHA512 (helix/tree-sitter-c-sharp-5b60f99545fea00a33bbfae5be956f684c4c69e2.tar.gz) = 
a7d6e88954ac37590c4faa74147b919bb3859651fe41580ad2205b5d471cee8de9fcb1b10db38ed06a3aa504b7feb7400856746e48c12083d172b123d4030277
+Size (helix/tree-sitter-c-sharp-5b60f99545fea00a33bbfae5be956f684c4c69e2.tar.gz) = 1050713 bytes
+BLAKE2s (helix/tree-sitter-cairo-b249662a1eefeb4d71c9529cdd971e74fecc10fe.tar.gz) = d815adb2be24c4a3e7f6df8cbf3692f9b31fa4b8aa8fc751011e6328c4797bf2
+SHA512 (helix/tree-sitter-cairo-b249662a1eefeb4d71c9529cdd971e74fecc10fe.tar.gz) = 
a9e0b991fb57670ace13a089425461f5924295165dd9a8701ec1c320b2a533898ea5a7be23f023253eb723c1e1b4a832a2c46cd2d4472685aa978faaeccd4c16
+Size (helix/tree-sitter-cairo-b249662a1eefeb4d71c9529cdd971e74fecc10fe.tar.gz) = 46478 bytes
 BLAKE2s (helix/tree-sitter-clojure-e57c569ae332ca365da623712ae1f50f84daeae2.tar.gz) = 936d3fcc21cbef8b79cf8506ce7d4a2e0be22413101f22b9016b7fbb0094a5b2
 SHA512 (helix/tree-sitter-clojure-e57c569ae332ca365da623712ae1f50f84daeae2.tar.gz) = 
9d8207f4ffc198d1e48f7b3d0f0b59c2f6ee68e1ea7611ff47fe18fcaed1f0e338c4b34075fab3aee4bb05f5c5c47f41f0bae8911fe8703c553bfcd180fbcdda
 Size (helix/tree-sitter-clojure-e57c569ae332ca365da623712ae1f50f84daeae2.tar.gz) = 58852 bytes
-BLAKE2s (helix/tree-sitter-cmake-f6616f1e417ee8b62daf251aa1daa5d73781c596.tar.gz) = 66497ad9c057c662ba43f7f65226a11aae37ed9a02383ecc7bb52e84ffae7b69
-SHA512 (helix/tree-sitter-cmake-f6616f1e417ee8b62daf251aa1daa5d73781c596.tar.gz) = 
9b947734614ae90ea38ed742fcccad3094ec81db07a7b3ff28a5613a1f949cfcbb8c74306e2288444c4318173e2e2c4fa4d479aa7a4a29a9dc7f05471c32dfa8
-Size (helix/tree-sitter-cmake-f6616f1e417ee8b62daf251aa1daa5d73781c596.tar.gz) = 42016 bytes
+BLAKE2s (helix/tree-sitter-cmake-6e51463ef3052dd3b328322c22172eda093727ad.tar.gz) = fbeb1768a05a65a43712d53746d384628315e80871d4bf5294e4ff62cf4a872e
+SHA512 (helix/tree-sitter-cmake-6e51463ef3052dd3b328322c22172eda093727ad.tar.gz) = 
78915e2aef76a527f2a28450a05be3436e92844e75b35270e7f4f572f377cebb26ab54ad50cd1f5cf37ffaaf9236d27ded858ca8c131cfa69c63c61a287785ce
+Size (helix/tree-sitter-cmake-6e51463ef3052dd3b328322c22172eda093727ad.tar.gz) = 42568 bytes
 BLAKE2s (helix/tree-sitter-comment-5dd3c62f1bbe378b220fe16b317b85247898639e.tar.gz) = ffb9d5303dffd9fdc4a39fef4e52e09c9a6759825ba74e72bea2cf65c5b1cb88
 SHA512 (helix/tree-sitter-comment-5dd3c62f1bbe378b220fe16b317b85247898639e.tar.gz) = 
c9a629f31744b6b98ffa83929752daf696408cd0fedda852eb794e76ea0b11b8e3989d6fb4ab1d8e1bdf9710a383809e2fe3253df484529ea051467b780915dc
 Size (helix/tree-sitter-comment-5dd3c62f1bbe378b220fe16b317b85247898639e.tar.gz) = 102722 bytes
 BLAKE2s (helix/tree-sitter-cpon-0d01fcdae5a53191df5b1349f9bce053833270e7.tar.gz) = fda7955ec913fa8d375588798bc70593237e3edd1a9e6accb1d19aabfbb8981e
 SHA512 (helix/tree-sitter-cpon-0d01fcdae5a53191df5b1349f9bce053833270e7.tar.gz) = 
f5cdac1745b3f6759cd59f8bb36baedd3ec4a40339fa3a5e7ac991f8e2cf79cf860da3a653d619409328b9c5b0d3711b2524f29a6ff36a1b159d8f32514c9371
 Size (helix/tree-sitter-cpon-0d01fcdae5a53191df5b1349f9bce053833270e7.tar.gz) = 16885 bytes
-BLAKE2s (helix/tree-sitter-cpp-e8dcc9d2b404c542fd236ea5f7208f90be8a6e89.tar.gz) = 23e0487fa5047dd70f0596507851d697d4fd57c8af85aea27e586bfd4837c4cc
-SHA512 (helix/tree-sitter-cpp-e8dcc9d2b404c542fd236ea5f7208f90be8a6e89.tar.gz) = 
1cadecaf145875ddc7537bcb5eaf1aaf278ac7442d51f8549c83cefbb2325b17a08c3251ddc1358eb2c013f130bfa804d02e5f8a4667bedf381072e5f829ca03
-Size (helix/tree-sitter-cpp-e8dcc9d2b404c542fd236ea5f7208f90be8a6e89.tar.gz) = 515976 bytes
-BLAKE2s (helix/tree-sitter-css-94e10230939e702b4fa3fa2cb5c3bc7173b95d07.tar.gz) = 2e1d3fe4c78cbdecffbcd47a35d01c51af9c93bd9b7a83509e287aa538d861aa
-SHA512 (helix/tree-sitter-css-94e10230939e702b4fa3fa2cb5c3bc7173b95d07.tar.gz) = 
f86d03f9428fa6da4902a2466a05a39a7e29de8ae5084421e652688c9ff7e512e3d31650cc13bc9abec33212cc7d31df47f9d2ee4384e4a60cde0f6e7ab9d123
-Size (helix/tree-sitter-css-94e10230939e702b4fa3fa2cb5c3bc7173b95d07.tar.gz) = 80789 bytes
+BLAKE2s (helix/tree-sitter-cpp-d5e90fba898f320db48d81ddedd78d52c67c1fed.tar.gz) = c6c4ecf4a159ad4dfb717538bfc02b40b597cc4f462dfaf461a1bb014f3d24ee
+SHA512 (helix/tree-sitter-cpp-d5e90fba898f320db48d81ddedd78d52c67c1fed.tar.gz) = 
4d5f570928e8e0f88b8706d6b706521a85447c117b6b7aa82aa5917d4fb95ea189999ba60b6679ff63316e35b179a2e586e01a073e687df79ea3fe6cd46df4c9
+Size (helix/tree-sitter-cpp-d5e90fba898f320db48d81ddedd78d52c67c1fed.tar.gz) = 704534 bytes
+BLAKE2s (helix/tree-sitter-css-769203d0f9abe1a9a691ac2b9fe4bb4397a73c51.tar.gz) = f1e5763e74e9810d4ea847cf1bd82afa27eb478dc54fd9e80e9df3fb115a7d5c
+SHA512 (helix/tree-sitter-css-769203d0f9abe1a9a691ac2b9fe4bb4397a73c51.tar.gz) = 
ec1322bf47f91bbb5587612054ce88b976249d4fb9f28c31561a6d95188b9d898eda3fd7ee664e6ace4e036536a7ca0756617c6687ae9859324b2d15683205b6
+Size (helix/tree-sitter-css-769203d0f9abe1a9a691ac2b9fe4bb4397a73c51.tar.gz) = 80956 bytes
 BLAKE2s (helix/tree-sitter-cue-61843e3beebf19417e4fede4e8be4df1084317ad.tar.gz) = 4faf0a9e21e72f755073f616113580ebb750908e561d8ea9f7050c7ef4e97d23
 SHA512 (helix/tree-sitter-cue-61843e3beebf19417e4fede4e8be4df1084317ad.tar.gz) = 
79699ace55596d40646c72cc6ce23e5307bf14b233ff5593cd8daa3262abb407f8f8b5d35136c7df9d05bc5e3aac0cde54059272c5a89bf30e481f868c83a41d
 Size (helix/tree-sitter-cue-61843e3beebf19417e4fede4e8be4df1084317ad.tar.gz) = 274057 bytes
+BLAKE2s (helix/tree-sitter-d-601c4a1e8310fb2f3c43fa8a923d0d27497f3c04.tar.gz) = f6741d2ac1dff7d726d2c515e8bfbf0a619823832a6cd3c58232f21d75f65d51
+SHA512 (helix/tree-sitter-d-601c4a1e8310fb2f3c43fa8a923d0d27497f3c04.tar.gz) = 
863232ef994c5762d6c9b92b552a6dcd9d64f6e42f6cc90e0f9732263ae82760354998a20ed3856c5db8160ce34de2f306090dacaca0bbb731b22fe90d204ca6
+Size (helix/tree-sitter-d-601c4a1e8310fb2f3c43fa8a923d0d27497f3c04.tar.gz) = 939838 bytes
 BLAKE2s (helix/tree-sitter-dart-2d7f66651c9319c1a0e4dda226cc2628fbb66528.tar.gz) = cd4b86d9a20ccdbf9df79a069f6511ef15504eb5bb5fb46c1b98d745e95b1ffa
 SHA512 (helix/tree-sitter-dart-2d7f66651c9319c1a0e4dda226cc2628fbb66528.tar.gz) = 
1176af26852259b9296e733066400a4ab4c032b27d47e05a5f87ec1b0a6af0de100ebd6501468bb4e3ea761b4c5467bc6dad1cf90de8100ed875e2fdaba29f8b
 Size (helix/tree-sitter-dart-2d7f66651c9319c1a0e4dda226cc2628fbb66528.tar.gz) = 416755 bytes
 BLAKE2s (helix/tree-sitter-devicetree-877adbfa0174d25894c40fa75ad52d4515a36368.tar.gz) = bfbc7ba17b45288026933d5885114a1e0e798670427c3e1f28422299a353c94f
 SHA512 (helix/tree-sitter-devicetree-877adbfa0174d25894c40fa75ad52d4515a36368.tar.gz) = 
1f5c914dcb62ac1cab09e14f10c72f9a6555323d5b4a245b0d2edc4c9352acd9d2f4eb7a88b6f4fbe0b1b50b87aa40cb0e576af975521ca16f26eb10e473d244
 Size (helix/tree-sitter-devicetree-877adbfa0174d25894c40fa75ad52d4515a36368.tar.gz) = 30875 bytes
-BLAKE2s (helix/tree-sitter-diff-c12e6ecb54485f764250556ffd7ccb18f8e2942b.tar.gz) = dba7cef1ec447fbf6dcd0a5796f9919e78ac27b2e3e7668c3ee284c792779fbb
-SHA512 (helix/tree-sitter-diff-c12e6ecb54485f764250556ffd7ccb18f8e2942b.tar.gz) = 
c135423598b0e1aa58ccd42593414a311b4677181b6ee23c51d9070ed55d8cceb3b6775775e25acf0f83642699895875b75504462827ee74aca83825ac5140aa
-Size (helix/tree-sitter-diff-c12e6ecb54485f764250556ffd7ccb18f8e2942b.tar.gz) = 23671 bytes
+BLAKE2s (helix/tree-sitter-diff-fd74c78fa88a20085dbc7bbeaba066f4d1692b63.tar.gz) = 685a0da32ac88a019361867c1bcc781ee34088eaa86e52248557a365f8a563b2
+SHA512 (helix/tree-sitter-diff-fd74c78fa88a20085dbc7bbeaba066f4d1692b63.tar.gz) = 
d2d13df9b204a431473c880b6dd695c39f5bd0400a39c09ae67d274f3755bb0b09d6d3dce1f0e3a930f35c38ec0475284d59328d11d7d9b89fdf3ca296699c5b
+Size (helix/tree-sitter-diff-fd74c78fa88a20085dbc7bbeaba066f4d1692b63.tar.gz) = 635020 bytes
 BLAKE2s (helix/tree-sitter-dockerfile-7af32bc04a66ab196f5b9f92ac471f29372ae2ce.tar.gz) = 8b07f203434c3c85e8e1687183c703d7f870d2cdfcc0ffeec1189500eca71862
 SHA512 (helix/tree-sitter-dockerfile-7af32bc04a66ab196f5b9f92ac471f29372ae2ce.tar.gz) = 
4c5f79b6e9988ae61012b465d5bcbfa43207ae8315474bd6d9869927628ee2c44da4252e43eca90452847e0522c5157d5f9440e0b416679c03a1c5cb2a5155cc
 Size (helix/tree-sitter-dockerfile-7af32bc04a66ab196f5b9f92ac471f29372ae2ce.tar.gz) = 37419 bytes
 BLAKE2s (helix/tree-sitter-dot-917230743aa10f45a408fea2ddb54bbbf5fbe7b7.tar.gz) = 682b559b744c800384254cc7c15d42637ae5432cc7e6e7ac48bc68cfdbabf2ad
 SHA512 (helix/tree-sitter-dot-917230743aa10f45a408fea2ddb54bbbf5fbe7b7.tar.gz) = 
0fed8eedaf90891f20a8c1fa029a972eced7b0c66d8c9c40e3ef1471735b599dc2df15de2dd48961dd78842075293568d45e68c6a67d197019cc5ebd32022bfa
 Size (helix/tree-sitter-dot-917230743aa10f45a408fea2ddb54bbbf5fbe7b7.tar.gz) = 29750 bytes
-BLAKE2s (helix/tree-sitter-edoc-1691ec0aa7ad1ed9fa295590545f27e570d12d60.tar.gz) = 5a20ed4a7bc69b94e6bde6de636b329bc9140759d2c74c7d9e3f7d4be4b2ef31
-SHA512 (helix/tree-sitter-edoc-1691ec0aa7ad1ed9fa295590545f27e570d12d60.tar.gz) = 
e4d1e2fe29de88378897bf33e20ddf0682893d980d967d4bf6bda6619f4a1432ca2293752ba722446f6190a2d5a5d513f4b8beb0d1af3ab58b96a4b8ee8d74f7
-Size (helix/tree-sitter-edoc-1691ec0aa7ad1ed9fa295590545f27e570d12d60.tar.gz) = 26521 bytes
+BLAKE2s (helix/tree-sitter-edoc-74774af7b45dd9cefbf9510328fc6ff2374afc50.tar.gz) = 3e6a494c23e04be248caa6ea56d7f063a90277d0677fcf26e2b5ad5fa15033a4
+SHA512 (helix/tree-sitter-edoc-74774af7b45dd9cefbf9510328fc6ff2374afc50.tar.gz) = 
f3688023e5e45f7189c7719fcd27e78b43a8476f161732d2cb7d71ca3c72a96facddc6a2a81890a6914680bffde787c65ef112b75e440f61e2b1db7bdcb5621b
+Size (helix/tree-sitter-edoc-74774af7b45dd9cefbf9510328fc6ff2374afc50.tar.gz) = 28784 bytes
 BLAKE2s (helix/tree-sitter-eex-f742f2fe327463335e8671a87c0b9b396905d1d1.tar.gz) = 78e199d6293fe551f15721c69127d78e9fe81da04ac9b958cfb8c0175c9bd29b
 SHA512 (helix/tree-sitter-eex-f742f2fe327463335e8671a87c0b9b396905d1d1.tar.gz) = 
a904d21ecb5bc67b8670f8149ac7081996e15ca5a615ba7f13508d8590bd689079e6d7aea11559f66a23dcfe9f87c26d920ae534ab9f258ddb16dff6f57d0586
 Size (helix/tree-sitter-eex-f742f2fe327463335e8671a87c0b9b396905d1d1.tar.gz) = 10620 bytes
-BLAKE2s (helix/tree-sitter-elixir-1dabc1c790e07115175057863808085ea60dd08a.tar.gz) = 9a53964b6fb114feb5b89708b21ea86849bb7f54e0d14f2c687479812dbd4be6
-SHA512 (helix/tree-sitter-elixir-1dabc1c790e07115175057863808085ea60dd08a.tar.gz) = 
c60ec7152e1f8bf509944d9f58a3f76c1192a3c7e1079b99c6dd136b21bc0806e9bf6bd477cd0a7b92fab106e97aa975f292b5a54ff7e5ef9db274491d396ac3
-Size (helix/tree-sitter-elixir-1dabc1c790e07115175057863808085ea60dd08a.tar.gz) = 566029 bytes
+BLAKE2s (helix/tree-sitter-elixir-b20eaa75565243c50be5e35e253d8beb58f45d56.tar.gz) = 65a7560c35b09704a81925ee0b46693376c82fed88fb3b03c1b83a22a35cef6e
+SHA512 (helix/tree-sitter-elixir-b20eaa75565243c50be5e35e253d8beb58f45d56.tar.gz) = 
88ed9d4bf3daf87804a3e816e2c925745d960d47400aa21a08506f48cf5c529348df4118055bdcaa0cb150341a10a1018321e701c7a409d286e7bc9f1f2f4b60
+Size (helix/tree-sitter-elixir-b20eaa75565243c50be5e35e253d8beb58f45d56.tar.gz) = 594652 bytes
 BLAKE2s (helix/tree-sitter-elm-df4cb639c01b76bc9ac9cc66788709a6da20002c.tar.gz) = 7e301ba56d8975c0ff3a83073d145adef4394c5eacbe9eb2b6dd395b0461d4d4
 SHA512 (helix/tree-sitter-elm-df4cb639c01b76bc9ac9cc66788709a6da20002c.tar.gz) = 
bf01b754cf582c1dadb10aa92f6541ebb816d24dc6c3b7f929d92da65159514e29210f66e2b40df58f4b9721fa4e4b4559dbfe1c5b813aa5d8f0d02bc9c4ad87
 Size (helix/tree-sitter-elm-df4cb639c01b76bc9ac9cc66788709a6da20002c.tar.gz) = 343162 bytes
@@ -429,15 +672,18 @@ Size (helix/tree-sitter-elvish-e50787cad
 BLAKE2s (helix/tree-sitter-embedded-template-d21df11b0ecc6fd211dbe11278e92ef67bd17e97.tar.gz) = b53260a0cc80b1f80cf988eb15f88022fcebfcbfa4880213a034f3d0d39401d9
 SHA512 (helix/tree-sitter-embedded-template-d21df11b0ecc6fd211dbe11278e92ef67bd17e97.tar.gz) = 
f7e8061249244184d65c7c0f927afa63188ec2725d7ad08ec2607e0942cae117566931d4a038e866ebead959212461c70f80a852f18356ee3a3505280abb82ff
 Size (helix/tree-sitter-embedded-template-d21df11b0ecc6fd211dbe11278e92ef67bd17e97.tar.gz) = 11296 bytes
-BLAKE2s (helix/tree-sitter-erlang-0e7d677d11a7379686c53c616825714ccb728059.tar.gz) = c5c34c32c997ad6847a4275f6fb6367b3ecb17644b777c093ca7337bae2286bb
-SHA512 (helix/tree-sitter-erlang-0e7d677d11a7379686c53c616825714ccb728059.tar.gz) = 
02d00336d57e4ca8ff7882edb5ca5d5332d2654ed29df246d07a5e570b0e563ec50f32cbda3c3ceb94641a3f3f0bdf8fe169fa5cd347cc07af148a57fd512d51
-Size (helix/tree-sitter-erlang-0e7d677d11a7379686c53c616825714ccb728059.tar.gz) = 211525 bytes
+BLAKE2s (helix/tree-sitter-env-e6c6bb1e7b51d481cba463fe949f083cf22d81f7.tar.gz) = e111cff27ab680b329ca84649f46b6a3473ec2e5cd55a3741c9f5a15547321a7
+SHA512 (helix/tree-sitter-env-e6c6bb1e7b51d481cba463fe949f083cf22d81f7.tar.gz) = 
e1a1daa56dfffeaf168a30ecc4f547efe39285de7890bd142a3e7e9717470780db785210204be6396fe378e2c7cb513dabbf1898deb6de78b99aab7d8c0ff321
+Size (helix/tree-sitter-env-e6c6bb1e7b51d481cba463fe949f083cf22d81f7.tar.gz) = 11473 bytes
+BLAKE2s (helix/tree-sitter-erlang-ce0ed253d72c199ab93caba7542b6f62075339c4.tar.gz) = 05154d5ff3c5b902be712fa13b7f957bdf81c0fef8f13f61ffe5dd945831b926
+SHA512 (helix/tree-sitter-erlang-ce0ed253d72c199ab93caba7542b6f62075339c4.tar.gz) = 
ba6a408e9fe967cd8007e8ff90576f8e4fc5446e153a3cb208f9675127509a1db2195887d12b3bdf0dff2bdb350977e4993da88f5dfce953a0108ad76bb33dd4
+Size (helix/tree-sitter-erlang-ce0ed253d72c199ab93caba7542b6f62075339c4.tar.gz) = 234921 bytes
 BLAKE2s (helix/tree-sitter-esdl-b840c8a8028127e0a7c6e6c45141adade2bd75cf.tar.gz) = e55965f61938a065a8488715ade308eb1d023fb57e45dec8c7f8354fb6c8a303
 SHA512 (helix/tree-sitter-esdl-b840c8a8028127e0a7c6e6c45141adade2bd75cf.tar.gz) = 
576627cdb19668d6b2f429f588ad935123db6341381766cc526fb4a71afe1e0ba3d467252b39abc4ed61674fb5fb881537b7ee5dd613a376226ec0221e390fe3
 Size (helix/tree-sitter-esdl-b840c8a8028127e0a7c6e6c45141adade2bd75cf.tar.gz) = 45744 bytes
-BLAKE2s (helix/tree-sitter-fish-04e54ab6585dfd4fee6ddfe5849af56f101b6d4f.tar.gz) = afdd7367d426b511b8fdd520480bffd07d43c310d8e22017eecb9a805763d956
-SHA512 (helix/tree-sitter-fish-04e54ab6585dfd4fee6ddfe5849af56f101b6d4f.tar.gz) = 
b80a59c92190ba8fb1e8571b9ee80b2eb7ee91d10f4adbdc1bbd95caa18f41e327bc3219e824f9416fd6513001da747068c51af22ca11d05d731c4ff3a46f968
-Size (helix/tree-sitter-fish-04e54ab6585dfd4fee6ddfe5849af56f101b6d4f.tar.gz) = 53439 bytes
+BLAKE2s (helix/tree-sitter-fish-84436cf24c2b3176bfbb220922a0fdbd0141e406.tar.gz) = 58197762efdf5b6b3314d5f78a7c096cf28932fe9635e8f8337bbd8c555e9b1f
+SHA512 (helix/tree-sitter-fish-84436cf24c2b3176bfbb220922a0fdbd0141e406.tar.gz) = 
32f411a0182a2bd9a53224e415a719fdb5dbf7ed24249230615029ef39a45eb4804ba75d26cf2a0bff93680dbb228af62254e9fc96a1f10e83d323dbc2954ee4
+Size (helix/tree-sitter-fish-84436cf24c2b3176bfbb220922a0fdbd0141e406.tar.gz) = 56036 bytes
 BLAKE2s (helix/tree-sitter-fortran-f0f2f100952a353e64e26b0fa710b4c296d7af13.tar.gz) = c0fab568440d57b5e3fa8a1e2dad39336ba28b1a06bfb0af8ffa70b6b6bdb9a8
 SHA512 (helix/tree-sitter-fortran-f0f2f100952a353e64e26b0fa710b4c296d7af13.tar.gz) = 
1c11bcdc6af87d9de9422fc6f20fca6e4ce9b53d5423feabc76b7ae73ec45e72a226c4126c50504b66b5f358e14197dca3be6c95845b44127a76d82bac39cdb0
 Size (helix/tree-sitter-fortran-f0f2f100952a353e64e26b0fa710b4c296d7af13.tar.gz) = 186957 bytes
@@ -459,15 +705,15 @@ Size (helix/tree-sitter-gitattributes-3d
 BLAKE2s (helix/tree-sitter-gitignore-f4685bf11ac466dd278449bcfe5fd014e94aa504.tar.gz) = 3078ea96fe1abf343e19d57ea63ba6a1413d046eafc770df0b27f3d6f9e2e5f6
 SHA512 (helix/tree-sitter-gitignore-f4685bf11ac466dd278449bcfe5fd014e94aa504.tar.gz) = 
9c5feddcf9cef28fd8b63c0d10fdd3d3e227be8baf7332b3a827852b1b5cb80fe42b84539bb815143990c42989bbced0f728a17c8dc69d7c450d3edc84d8bfa4
 Size (helix/tree-sitter-gitignore-f4685bf11ac466dd278449bcfe5fd014e94aa504.tar.gz) = 16594 bytes
-BLAKE2s (helix/tree-sitter-gleam-d7861b2a4b4d594c58bb4f1be5f1f4ee4c67e5c3.tar.gz) = 53473a7c6bb914df6caa136af6e22d1b0c31156bec7a0f1c2b24c27217cb8b48
-SHA512 (helix/tree-sitter-gleam-d7861b2a4b4d594c58bb4f1be5f1f4ee4c67e5c3.tar.gz) = 
e4312f385da52a563d888a8f3a2c0021e7323a3e322d569ea3f6e1e39ae5d15de5859ef021f2288b8b5441f45a35bdd3503778f81c675a97414f8108b167cd74
-Size (helix/tree-sitter-gleam-d7861b2a4b4d594c58bb4f1be5f1f4ee4c67e5c3.tar.gz) = 107191 bytes
+BLAKE2s (helix/tree-sitter-gleam-d6cbdf3477fcdb0b4d811518a356f9b5cd1795ed.tar.gz) = 75ea4c2c8126fd2956cccec69bb52ad14f8b693af5a923a38cc6a35c26594d66
+SHA512 (helix/tree-sitter-gleam-d6cbdf3477fcdb0b4d811518a356f9b5cd1795ed.tar.gz) = 
5362eeb18811f63f8aff8eef83aca4b41d342d8162926c4f5f10812a0acefcf5b7ce23b0faaeb5d1dd0e5e25bdc206057caeb1ba2c7c45888ee0d04c1582c3da
+Size (helix/tree-sitter-gleam-d6cbdf3477fcdb0b4d811518a356f9b5cd1795ed.tar.gz) = 115121 bytes
 BLAKE2s (helix/tree-sitter-glsl-88408ffc5e27abcffced7010fc77396ae3636d7e.tar.gz) = 8966c74ba16f37ce0a11e77d620cd4b7e76c54acc0cff8a38d988cb8b1e503cb
 SHA512 (helix/tree-sitter-glsl-88408ffc5e27abcffced7010fc77396ae3636d7e.tar.gz) = 
b5153ba55f446a5857f8f1b6d60b3e0468bf4422da4466d5065e753ac67d703f4c1c8b7c9617b8456b45e4d4105d46023826691d91c1dac78c745b29cbdb1aa2
 Size (helix/tree-sitter-glsl-88408ffc5e27abcffced7010fc77396ae3636d7e.tar.gz) = 236441 bytes
-BLAKE2s (helix/tree-sitter-go-0fa917a7022d1cd2e9b779a6a8fc5dc7fad69c75.tar.gz) = 1e55cbb97a0bd40cbda0451553cfabd8337f3c3562f61c8bea65ab4f1e73db56
-SHA512 (helix/tree-sitter-go-0fa917a7022d1cd2e9b779a6a8fc5dc7fad69c75.tar.gz) = 
5c64e2a9003988352e5ec932a01f962d04b49753d904f4bfcd1ae975ba7ce622ede54f54d28cc9f85815cffd944db2e5c9196d72bdbe172d33ded00b93ee8eb1
-Size (helix/tree-sitter-go-0fa917a7022d1cd2e9b779a6a8fc5dc7fad69c75.tar.gz) = 164760 bytes
+BLAKE2s (helix/tree-sitter-go-05900faa3cdb5d2d8c8bd5e77ee698487e0a8611.tar.gz) = 7338b1c651995351f1b2adbde37ade99b5a9aed0693565959a42e5d32b95b73d
+SHA512 (helix/tree-sitter-go-05900faa3cdb5d2d8c8bd5e77ee698487e0a8611.tar.gz) = 
6963778468c07e18305133c8deb413f7fae958916472bd2d41b9ed219a41d357ddc3a0ad32f1485e03c145707b7d71da0d566806ef65c377201d906198fce99f
+Size (helix/tree-sitter-go-05900faa3cdb5d2d8c8bd5e77ee698487e0a8611.tar.gz) = 173878 bytes
 BLAKE2s (helix/tree-sitter-go-mod-e8f51f8e4363a3d9a427e8f63f4c1bbc5ef5d8d0.tar.gz) = 4b088367d19ab21d52616a0e52bcda39fdea2d32026a912a7d4b3f35251dee4d
 SHA512 (helix/tree-sitter-go-mod-e8f51f8e4363a3d9a427e8f63f4c1bbc5ef5d8d0.tar.gz) = 
8ae1931f6bb892ccc1cd6c7c6a9c5f3a2faa730fa993b33a040c59f1c7a212233c3241ab5172172aef18d4a9edb04f004011bc8a87517c01cee6f70aefeddc18
 Size (helix/tree-sitter-go-mod-e8f51f8e4363a3d9a427e8f63f4c1bbc5ef5d8d0.tar.gz) = 18696 bytes
@@ -477,6 +723,9 @@ Size (helix/tree-sitter-go-template-395a
 BLAKE2s (helix/tree-sitter-go-work-6dd9dd79fb51e9f2abc829d5e97b15015b6a8ae2.tar.gz) = 75b730caf09456bbe7c5018334b14b2f64f2b4dfcadd0f130c35e9e9e806c749
 SHA512 (helix/tree-sitter-go-work-6dd9dd79fb51e9f2abc829d5e97b15015b6a8ae2.tar.gz) = 
1abf6e0b09040fae3187b18009a372264e09c4d238ec0fdddfd4cd12bc43fd31ace4c8d7cc943968810ab94e78f1f6a2bd8cd280d5bff1e72a82602fff49caa5
 Size (helix/tree-sitter-go-work-6dd9dd79fb51e9f2abc829d5e97b15015b6a8ae2.tar.gz) = 14980 bytes
+BLAKE2s (helix/tree-sitter-godot-resource-b6ef0768711086a86b3297056f9ffb5cc1d77b4a.tar.gz) = 0a01b3bbf813876acd52d82c1e73139140f20575d7f8e567c124f4e4cac9c82e
+SHA512 (helix/tree-sitter-godot-resource-b6ef0768711086a86b3297056f9ffb5cc1d77b4a.tar.gz) = 
eebd43697699e3bdc490fe4db53592d5461beba1aab9c6d8f92c98b96541be195c331b4bd9cc3779e83b949982a803f25ba2a6a7f6f6f5aef83854bb56d9cfde
+Size (helix/tree-sitter-godot-resource-b6ef0768711086a86b3297056f9ffb5cc1d77b4a.tar.gz) = 17964 bytes
 BLAKE2s (helix/tree-sitter-graphql-5e66e961eee421786bdda8495ed1db045e06b5fe.tar.gz) = ec893a583ab96f0a65fa830271b6698c98ec9fc8460315ae38685ff51f14efa3
 SHA512 (helix/tree-sitter-graphql-5e66e961eee421786bdda8495ed1db045e06b5fe.tar.gz) = 
a562eedfaf17efeecf0a1048683aeb168cb7b4a6599c06475b4195fe321989a847395edf796fe65952cfc87a72e51ab5df6062e70395d40cffe0329a2a76cbf5
 Size (helix/tree-sitter-graphql-5e66e961eee421786bdda8495ed1db045e06b5fe.tar.gz) = 51683 bytes
@@ -489,18 +738,21 @@ Size (helix/tree-sitter-haskell-b6ec26f1
 BLAKE2s (helix/tree-sitter-hcl-3cb7fc28247efbcb2973b97e71c78838ad98a583.tar.gz) = 43bae2982a3b4ccfc1022dd3a4d11fdf0f956877be180fd314505f9fb626f0b2
 SHA512 (helix/tree-sitter-hcl-3cb7fc28247efbcb2973b97e71c78838ad98a583.tar.gz) = 
855aa39880bcbb55d457b8a2d8e568a38ce8518272f9f10b7c24477bc52ae045939cdcc18f7e6c383394b8b3f17338edd0f0c509d8703de6b450367f94f25ffc
 Size (helix/tree-sitter-hcl-3cb7fc28247efbcb2973b97e71c78838ad98a583.tar.gz) = 656249 bytes
-BLAKE2s (helix/tree-sitter-heex-961bc4d2937cfd24ceb0a5a6b2da607809f8822e.tar.gz) = e71d81d70e21122c9e7be51d28c75c26fbe14239004bf8177c328a0166b19c3f
-SHA512 (helix/tree-sitter-heex-961bc4d2937cfd24ceb0a5a6b2da607809f8822e.tar.gz) = 
7fa50bf92a209b19c0d1fb1eb1d4e1f67283dee7fb2a7001e4a61f0a3df04ee9e6f51d6f06a35c9ff754f6d823f3f46bb623e815d28236b313e0db8c12935b39
-Size (helix/tree-sitter-heex-961bc4d2937cfd24ceb0a5a6b2da607809f8822e.tar.gz) = 23996 bytes
-BLAKE2s (helix/tree-sitter-html-d93af487cc75120c89257195e6be46c999c6ba18.tar.gz) = fb296043f6e0bdbbbc386af9b5a0ce7ed8331b4ee1aaee21b646e3030e2043a7
-SHA512 (helix/tree-sitter-html-d93af487cc75120c89257195e6be46c999c6ba18.tar.gz) = 
5058fe9811031c93acaf0264656020fba6df97d7212e21acee086c9424364102ab5a674a3f0eee4554b1567689405437d5b3c254fde34f548bbe709d75dc1963
-Size (helix/tree-sitter-html-d93af487cc75120c89257195e6be46c999c6ba18.tar.gz) = 18802 bytes
+BLAKE2s (helix/tree-sitter-heex-2e1348c3cf2c9323e87c2744796cf3f3868aa82a.tar.gz) = 7e9ccd7970e887e961a5f03bb043b5d6258f5fe5d4f20ee03587bc1a88aec52a
+SHA512 (helix/tree-sitter-heex-2e1348c3cf2c9323e87c2744796cf3f3868aa82a.tar.gz) = 
a607a3fbc37d2d6fa1e51d99d07c614f3dba55900d522aaddc62e4fc7ed3b8ffb04c3c4d82db8693f76a74fe5a65a8083418386eae1feb0404b16e26738f6da4
+Size (helix/tree-sitter-heex-2e1348c3cf2c9323e87c2744796cf3f3868aa82a.tar.gz) = 25657 bytes
+BLAKE2s (helix/tree-sitter-html-29f53d8f4f2335e61bf6418ab8958dac3282077a.tar.gz) = f9d0ae7bd7323b0bb1bcabfb9fc68a439d148101d6b632428b9b5e557f9eaa3b
+SHA512 (helix/tree-sitter-html-29f53d8f4f2335e61bf6418ab8958dac3282077a.tar.gz) = 
35340e0cb362b917c56f5753d31952872f9a1e85394d78a9d98d7cb342c5e0341ab8821f6416e9fe7c85b7ca45d311c7ecf30ae9d634a24da347885b88aabebb
+Size (helix/tree-sitter-html-29f53d8f4f2335e61bf6418ab8958dac3282077a.tar.gz) = 20234 bytes
 BLAKE2s (helix/tree-sitter-iex-39f20bb51f502e32058684e893c0c0b00bb2332c.tar.gz) = 066b89a9191286ec0ddc1a4433f2b807402d5f8eef85977abccb1fba940b886d
 SHA512 (helix/tree-sitter-iex-39f20bb51f502e32058684e893c0c0b00bb2332c.tar.gz) = 
a056f6ce6771cda8f2ab5d8b58cc060267a4d5617e9b232a360e8c6e2861f9818c86b2679f58712dd2b12805e1e719160156840934c4d38d9f24555916c89893
 Size (helix/tree-sitter-iex-39f20bb51f502e32058684e893c0c0b00bb2332c.tar.gz) = 60772 bytes
-BLAKE2s (helix/tree-sitter-java-bd6186c24d5eb13b4623efac9d944dcc095c0dad.tar.gz) = b157db445c8da033a4f3b3e6a8219df345feedb1b6e627df9f62f768fbaf330c
-SHA512 (helix/tree-sitter-java-bd6186c24d5eb13b4623efac9d944dcc095c0dad.tar.gz) = 
f9a7c6a9a6f53db7a89eb700917952afdf1eb5856523a4821232e6108c3022db90ae76e4aeb6351d6cdf7d77f6b191b41605d975fb1daceabbc84ea662d48e48
-Size (helix/tree-sitter-java-bd6186c24d5eb13b4623efac9d944dcc095c0dad.tar.gz) = 145551 bytes
+BLAKE2s (helix/tree-sitter-ini-4d247fb876b4ae6b347687de4a179511bf67fcbc.tar.gz) = ce353fb6110299b47d63eacb999fa71a4dfb26c4b4f9ef378366e99d58897a6d
+SHA512 (helix/tree-sitter-ini-4d247fb876b4ae6b347687de4a179511bf67fcbc.tar.gz) = 
e8b12986097cfa8e52a321d6c9436a3b00c5de8ef79070ffe4b04609066457146e70f14aa0e6be42fdaff679e1adf13e27f88379b56f9491326ddd047e9415c6
+Size (helix/tree-sitter-ini-4d247fb876b4ae6b347687de4a179511bf67fcbc.tar.gz) = 17387 bytes
+BLAKE2s (helix/tree-sitter-java-09d650def6cdf7f479f4b78f595e9ef5b58ce31e.tar.gz) = d9a9079215eabf66a5453daaee6ec426cd10e829ef23c7da19b1eeb43dce6e27
+SHA512 (helix/tree-sitter-java-09d650def6cdf7f479f4b78f595e9ef5b58ce31e.tar.gz) = 
c1c9c2345f191084c755c4f9363dc360bcb77b9d2ca5fba22ff7bb699383335f891d65ae6d5d0065aa82bc2d328c1c9ce8583e61d4ce7118242f3cb18bd46c0d
+Size (helix/tree-sitter-java-09d650def6cdf7f479f4b78f595e9ef5b58ce31e.tar.gz) = 176945 bytes
 BLAKE2s (helix/tree-sitter-javascript-4a95461c4761c624f2263725aca79eeaefd36cad.tar.gz) = 1b2ef501925b1e983d59f0a2ae6f00715771c6dc5cd28a7cde8755928a090289
 SHA512 (helix/tree-sitter-javascript-4a95461c4761c624f2263725aca79eeaefd36cad.tar.gz) = 
e6b9fa596a787c3e4d0dfb39821de464f08dafbb635a46077d4a377aa8dc5331a6248b1ccda06fec2b4887fa83dcfcf61365cdee564cfa191722a2897977dac8
 Size (helix/tree-sitter-javascript-4a95461c4761c624f2263725aca79eeaefd36cad.tar.gz) = 261488 bytes
@@ -510,15 +762,21 @@ Size (helix/tree-sitter-jsdoc-189a6a4829
 BLAKE2s (helix/tree-sitter-json-65bceef69c3b0f24c0b19ce67d79f57c96e90fcb.tar.gz) = c417ba6b1c9dd6a2bfc3b19f3d33de5c8b654a13c41b2ee6f383d97a32585151
 SHA512 (helix/tree-sitter-json-65bceef69c3b0f24c0b19ce67d79f57c96e90fcb.tar.gz) = 
8647d87d2e076d66c095dece98dc0c1983db107416c2b1475c269a7371d15ba24d26455c94a9af20373c103d759d405817309e578b30ef1fc35863d0f7d98c40
 Size (helix/tree-sitter-json-65bceef69c3b0f24c0b19ce67d79f57c96e90fcb.tar.gz) = 11256 bytes
-BLAKE2s (helix/tree-sitter-julia-fc60b7cce87da7a1b7f8cb0f9371c3dc8b684500.tar.gz) = 29aa29cd7fc7f831feb68431cb7f55af9be3513b39ca663781173f120d5ee530
-SHA512 (helix/tree-sitter-julia-fc60b7cce87da7a1b7f8cb0f9371c3dc8b684500.tar.gz) = 
dab68162e103001ecaf84ebaa121249f001517097ff2355dadc173ffac96055e28609dada6ec12c7ebfd9bd2c8b1625596eed912a7b2a35978803d8b234ad44b
-Size (helix/tree-sitter-julia-fc60b7cce87da7a1b7f8cb0f9371c3dc8b684500.tar.gz) = 451189 bytes
+BLAKE2s (helix/tree-sitter-jsonnet-0475a5017ad7dc84845d1d33187f2321abcb261d.tar.gz) = e11d2356f6b58fd37ac7b16f24e4a4cb2395c8d4d30037ef5138eb740ebc367a
+SHA512 (helix/tree-sitter-jsonnet-0475a5017ad7dc84845d1d33187f2321abcb261d.tar.gz) = 
92b533ac1a1b8b29d5850529be83c4c36c88c5a649193bf741036bc50808e3cfbc1c9da79f6c4c72214ca310ae6e9c408f53ff9a07285ef29eaef1f0048107a2
+Size (helix/tree-sitter-jsonnet-0475a5017ad7dc84845d1d33187f2321abcb261d.tar.gz) = 34276 bytes
+BLAKE2s (helix/tree-sitter-julia-8fb38abff74652c4faddbf04d2d5bbbc6b4bae25.tar.gz) = abcf28edd12a4f6930fa44185974c0b499b05cb41df6913d6c0690540bafff76
+SHA512 (helix/tree-sitter-julia-8fb38abff74652c4faddbf04d2d5bbbc6b4bae25.tar.gz) = 
251577f1ac94b694221912d1ae0ec2913f8666222f128f6e45895fc179a0b8912bec800c27550b3c77c4813496592e9ee3cd8baa8af2ec12b43edbe9ba4ed15e
+Size (helix/tree-sitter-julia-8fb38abff74652c4faddbf04d2d5bbbc6b4bae25.tar.gz) = 720154 bytes
+BLAKE2s (helix/tree-sitter-kdl-e1cd292c6d15df6610484e1d4b5c987ecad52373.tar.gz) = 9ec56d077dce052b5061f5bbd744980a91cc42e0c952541eb7e53985c85dc141
+SHA512 (helix/tree-sitter-kdl-e1cd292c6d15df6610484e1d4b5c987ecad52373.tar.gz) = 
741d0492148780808db769964cb70912e66b0958a21a44fcd197d564709cc7c81744f5b6fb3a3fbe59cffe54b5cc19ffcf9d4e0ee228929dafb14e581e7c52ee
+Size (helix/tree-sitter-kdl-e1cd292c6d15df6610484e1d4b5c987ecad52373.tar.gz) = 16685 bytes
 BLAKE2s (helix/tree-sitter-kotlin-a4f71eb9b8c9b19ded3e0e9470be4b1b77c2b569.tar.gz) = f9cd588927bd3f095f8d7ba80652782e1c3d88bd282ec1dd4c778fcc0e3295ea
 SHA512 (helix/tree-sitter-kotlin-a4f71eb9b8c9b19ded3e0e9470be4b1b77c2b569.tar.gz) = 
34295599ed4c32f347e633ad2e983e73e887062dbccbb814b9bbdf156ef1f5e48305ff04392668fe0034c3e280e24893c8e20a6d9918249612a25b141982ad35
 Size (helix/tree-sitter-kotlin-a4f71eb9b8c9b19ded3e0e9470be4b1b77c2b569.tar.gz) = 1619642 bytes
-BLAKE2s (helix/tree-sitter-latex-b3b2cf27f33e71438ebe46934900b1153901c6f2.tar.gz) = 873db210d6349f308490290e13fd45b75f04d02eb035d8dfebb62ea44d44d4f4
-SHA512 (helix/tree-sitter-latex-b3b2cf27f33e71438ebe46934900b1153901c6f2.tar.gz) = 
f28c1ea05ccedbd535a9dea797c8b62d189310acd1b9f7bda070edd274e6699a9c5b14afed8d0ef003b37f3a1fb8f5295d090705a0cd13a81001a8f00afd430d
-Size (helix/tree-sitter-latex-b3b2cf27f33e71438ebe46934900b1153901c6f2.tar.gz) = 1893167 bytes
+BLAKE2s (helix/tree-sitter-latex-8c75e93cd08ccb7ce1ccab22c1fbd6360e3bcea6.tar.gz) = d5d8feb95b3d716c70d3ecb0524b8aa5eb311ea71e76def3f4cb1401f1ec68bd
+SHA512 (helix/tree-sitter-latex-8c75e93cd08ccb7ce1ccab22c1fbd6360e3bcea6.tar.gz) = 
f09ec8ef1caba8be00f55a406790496e8ce6dbd79d0e93c47b4507fe911e76f64398872126083548cd7e7746d9e2da3d81d247566cd234e59b68d94fa4f63b94
+Size (helix/tree-sitter-latex-8c75e93cd08ccb7ce1ccab22c1fbd6360e3bcea6.tar.gz) = 1929835 bytes
 BLAKE2s (helix/tree-sitter-lean-d98426109258b266e1e92358c5f11716d2e8f638.tar.gz) = 8bf02ead49de993b5549552f01aefd443c85a8e9508d5802fe617ad08536f555
 SHA512 (helix/tree-sitter-lean-d98426109258b266e1e92358c5f11716d2e8f638.tar.gz) = 
cbedb8c13ad8281d9bca05a1d96060bc2c182428d2b093954269c9a0faf1d32ce5caa9b116e126aa358bef790ec4aeaabc6d307d5b13c6c9fcab68a57688a7a9
 Size (helix/tree-sitter-lean-d98426109258b266e1e92358c5f11716d2e8f638.tar.gz) = 5717653 bytes
@@ -531,27 +789,27 @@ Size (helix/tree-sitter-llvm-3b213925b9c
 BLAKE2s (helix/tree-sitter-llvm-mir-06fabca19454b2dc00c1b211a7cb7ad0bc2585f1.tar.gz) = 8bf72b083a2c2af774564e8edfedb0be9b128ba763afc9310d987a2b07fe76d4
 SHA512 (helix/tree-sitter-llvm-mir-06fabca19454b2dc00c1b211a7cb7ad0bc2585f1.tar.gz) = 
860b6ccba40313a2a20cd29a921042672a3b32ffc8f05531e59963874c90c75d32f40475e15dc2a0a226df0ae2b7eb11404617386933973816212fd1b5ccb8a7
 Size (helix/tree-sitter-llvm-mir-06fabca19454b2dc00c1b211a7cb7ad0bc2585f1.tar.gz) = 65850 bytes
-BLAKE2s (helix/tree-sitter-lua-6f5d40190ec8a0aa8c8410699353d820f4f7d7a6.tar.gz) = 53a04b5a19e518b01d1b032ef324a122e2d1a76f98ac1ea2484d45b433e4a49f
-SHA512 (helix/tree-sitter-lua-6f5d40190ec8a0aa8c8410699353d820f4f7d7a6.tar.gz) = 
779960ef72906c945e153f3ac534641112dfd4d2688668899bbe97e6ed62553e5cd3ba997e08a27e7b3fca902a3a89a7f8fd928734cdd64b1975160a851570c2
-Size (helix/tree-sitter-lua-6f5d40190ec8a0aa8c8410699353d820f4f7d7a6.tar.gz) = 110225 bytes
+BLAKE2s (helix/tree-sitter-lua-887dfd4e83c469300c279314ff1619b1d0b85b91.tar.gz) = 4002b2ab7c8ddbbdb60a3a71fffc2b042b9347d60006dedc61bf6f65276e1887
+SHA512 (helix/tree-sitter-lua-887dfd4e83c469300c279314ff1619b1d0b85b91.tar.gz) = 
a2725c00d97e1ab45484950649b75f90c0e2ff90df89e332a3c4d79e4fa2e925ebc425fd70d1cc4ad775d6ffc8e41c2bc6f44ee519492585a1150d4b980114bf
+Size (helix/tree-sitter-lua-887dfd4e83c469300c279314ff1619b1d0b85b91.tar.gz) = 38759 bytes
 BLAKE2s (helix/tree-sitter-make-a4b9187417d6be349ee5fd4b6e77b4172c6827dd.tar.gz) = 134a577a1b97e92ce4fecd21b2f5ce28c3e0f9cb3f1301821c01ea9d2ac93458
 SHA512 (helix/tree-sitter-make-a4b9187417d6be349ee5fd4b6e77b4172c6827dd.tar.gz) = 
d2d33c64c97caa2e54ca3fcfd33d00e2ca9f3dbbdbeaa60308d2d34dbba9b8519980bc2f5331ee9159efcf4d942a412fb4e4bbff4c4f926ac14ecc767b788069
 Size (helix/tree-sitter-make-a4b9187417d6be349ee5fd4b6e77b4172c6827dd.tar.gz) = 81522 bytes
-BLAKE2s (helix/tree-sitter-markdown-142a5b4a1b092b64c9f5db8f11558f9dd4009a1b.tar.gz) = d6ee4671c36c55ebf611c9def9d665df5bf0f5ed1baa244388d3faef6049a9ba
-SHA512 (helix/tree-sitter-markdown-142a5b4a1b092b64c9f5db8f11558f9dd4009a1b.tar.gz) = 
f18fe0ee8d0c39c3a7eaa3c0dab57bc5a575117de9740f44e9d92bab75d1ba0609430342068822653de7f90a99c54323ad29b64bfc7827ddca42f41db6a996b9
-Size (helix/tree-sitter-markdown-142a5b4a1b092b64c9f5db8f11558f9dd4009a1b.tar.gz) = 334382 bytes
-BLAKE2s (helix/tree-sitter-meson-feea83be9225842490066522ced2d13eb9cce0bd.tar.gz) = 60bdebc732763d0e9e2d2834c66657aed297394ca09feb7dec211a3ca391e30c
-SHA512 (helix/tree-sitter-meson-feea83be9225842490066522ced2d13eb9cce0bd.tar.gz) = 
481187f192d325103ddf53c97279198628081b0a3c825731d839a11f87361184350bd11eab976e56532f32737e8e01e9546b5c532c238da73cf6fbc40c5c7450
-Size (helix/tree-sitter-meson-feea83be9225842490066522ced2d13eb9cce0bd.tar.gz) = 28928 bytes
+BLAKE2s (helix/tree-sitter-markdown-a7de4be29783a6e25f3240c90afea52f2417faa3.tar.gz) = dd849383d2fc17802e2bbc7a1bf3ce236d5af3ca94fc5119cd4923d63c67fb80
+SHA512 (helix/tree-sitter-markdown-a7de4be29783a6e25f3240c90afea52f2417faa3.tar.gz) = 
7f83deeb8a6d3ca7eb0922bf91931b728967e6976b93772d02e53503f9f68c5da17fabb2ed9eaed7c82ed9d050d59b32c8775fd155ab7986f6e75fed88135bb6
+Size (helix/tree-sitter-markdown-a7de4be29783a6e25f3240c90afea52f2417faa3.tar.gz) = 376261 bytes
+BLAKE2s (helix/tree-sitter-meson-32a83e8f200c347232fa795636cfe60dde22957a.tar.gz) = 6871dad3895dfc66cf95ac0518105324b33401bbae889a0b48e66e1b33c2d463
+SHA512 (helix/tree-sitter-meson-32a83e8f200c347232fa795636cfe60dde22957a.tar.gz) = 
a7a23fa9260207c74652878d946399f4c9aa4157d43439ac8244c4e7cd391604fbcbf1ef7fa7aca5b1d971750a3b5b1f2374f369c4303d2e7253afc29c52660d
+Size (helix/tree-sitter-meson-32a83e8f200c347232fa795636cfe60dde22957a.tar.gz) = 35980 bytes
 BLAKE2s (helix/tree-sitter-nickel-9d83db400b6c11260b9106f131f93ddda8131933.tar.gz) = 79fa7d644b15fedac55734ca16a677373fe3b30bc4fc438cd12bdac2970c5887
 SHA512 (helix/tree-sitter-nickel-9d83db400b6c11260b9106f131f93ddda8131933.tar.gz) = 
d939d5a5b39c118ba6d370bac6fd4d20960d963c0b44a69e30620a805b5f7316cae24de347a7d78b45d6ad1aa769c52b7b991b8e8207388a32a6fddcb06b66b1
 Size (helix/tree-sitter-nickel-9d83db400b6c11260b9106f131f93ddda8131933.tar.gz) = 83862 bytes
 BLAKE2s (helix/tree-sitter-nix-6b71a810c0acd49b980c50fc79092561f7cee307.tar.gz) = fb91c7c092dc9bdb94fce7e3a881d463d217bbbce0215bb9f41519d6d7abf016
 SHA512 (helix/tree-sitter-nix-6b71a810c0acd49b980c50fc79092561f7cee307.tar.gz) = 
00b0a9f82ff40cbc54ea2bcab702cb2366ae4aa7c484463e40ffaf202bac0af24102b0a843bff1bea8504880968bfe9e99fdda5a00a24adba299d909682e307b
 Size (helix/tree-sitter-nix-6b71a810c0acd49b980c50fc79092561f7cee307.tar.gz) = 50316 bytes
-BLAKE2s (helix/tree-sitter-nu-db4e990b78824c8abef3618e0f93b7fe1e8f4c0d.tar.gz) = c9d458b63a46a797a97ebfb8343d2a73971af54184686d10ea7400dd8c2b9308
-SHA512 (helix/tree-sitter-nu-db4e990b78824c8abef3618e0f93b7fe1e8f4c0d.tar.gz) = 
0b3f4be10b3ec92983478e1663e4e2379a237e2247d63974195be5de0c11dca23c86329b23e785d420417a6b60d1e43d2cfcbf520622587a2396d036a880ae9f
-Size (helix/tree-sitter-nu-db4e990b78824c8abef3618e0f93b7fe1e8f4c0d.tar.gz) = 56782 bytes
+BLAKE2s (helix/tree-sitter-nu-eb95bdac3abd73ef47e53f19c63e74a31405ebd2.tar.gz) = 37ace5890cd3428a75fd9d2ec27da92f0b3b9a53322b26e7729d37540bd76760
+SHA512 (helix/tree-sitter-nu-eb95bdac3abd73ef47e53f19c63e74a31405ebd2.tar.gz) = 
8fb7f0405e02ea58e5eda297590c780899dd3d3bedd3c3e6bc82a06ecd55e419347c3a7de939c645b8ec6aa9439d3e634692c0b87927ed5897e908781135c8f4
+Size (helix/tree-sitter-nu-eb95bdac3abd73ef47e53f19c63e74a31405ebd2.tar.gz) = 68142 bytes
 BLAKE2s (helix/tree-sitter-ocaml-23d419ba45789c5a47d31448061557716b02750a.tar.gz) = b453c25dc0940a3b83dfd415279187cee243b60636ab8b847a83bc20b25133da
 SHA512 (helix/tree-sitter-ocaml-23d419ba45789c5a47d31448061557716b02750a.tar.gz) = 
32126d47422a04089c213ff742a91a0f201e91552fae281fd051f52b1787a80e745abb3d59b2dec82c61bbee275fe77c971b2556160f89bf7ba191e822642fe6
 Size (helix/tree-sitter-ocaml-23d419ba45789c5a47d31448061557716b02750a.tar.gz) = 1428467 bytes
@@ -582,24 +840,27 @@ Size (helix/tree-sitter-protobuf-19c211a
 BLAKE2s (helix/tree-sitter-python-de221eccf9a221f5b85474a553474a69b4b5784d.tar.gz) = 6ec9acf12cb66f5af3fa5095f10dc7e6c34afbe41571e29ffbc94b0b02c119dd
 SHA512 (helix/tree-sitter-python-de221eccf9a221f5b85474a553474a69b4b5784d.tar.gz) = 
ef220397957cae740b49a05bcfc7f8e6bce4ae39110af05325c1467cb2175f0fd3284242e6b925c1a07ae2f165b2c76277ee0aeb80e240cec4b6c8b9dd26e0fa
 Size (helix/tree-sitter-python-de221eccf9a221f5b85474a553474a69b4b5784d.tar.gz) = 193647 bytes
+BLAKE2s (helix/tree-sitter-qmljs-0b2b25bcaa7d4925d5f0dda16f6a99c588a437f1.tar.gz) = 500cb79b90080a5e55c97603bab111779708a9b1bf290b4a8963338e70d1bb6e
+SHA512 (helix/tree-sitter-qmljs-0b2b25bcaa7d4925d5f0dda16f6a99c588a437f1.tar.gz) = 
357eafe01f451e011ba4a5621b9bd36a9da4983e6b64a994b02a4640be9d4547bd2ec438240844a392015e9f9fc29d617d928169837f91325263b140f956462c
+Size (helix/tree-sitter-qmljs-0b2b25bcaa7d4925d5f0dda16f6a99c588a437f1.tar.gz) = 439576 bytes
 BLAKE2s (helix/tree-sitter-r-cc04302e1bff76fa02e129f332f44636813b0c3c.tar.gz) = e05a943498b253883f8ab1e05b484c1a8784c58e636d4e9781566534e35cb621
 SHA512 (helix/tree-sitter-r-cc04302e1bff76fa02e129f332f44636813b0c3c.tar.gz) = 
a63c1cc893be48a784f473f1ebaec765d26a9568d7e350134393d4b3ffa59f476100e43207c0cde18f43cabf91cc2a053072a3748e7cd13f9a3e441bbd28754f
 Size (helix/tree-sitter-r-cc04302e1bff76fa02e129f332f44636813b0c3c.tar.gz) = 181225 bytes
 BLAKE2s (helix/tree-sitter-regex-e1cfca3c79896ff79842f057ea13e529b66af636.tar.gz) = 1c7e475f3da5b1965af9c421d3f094554a73a0ae52e69a5a2e05e200a86fc8c7
 SHA512 (helix/tree-sitter-regex-e1cfca3c79896ff79842f057ea13e529b66af636.tar.gz) = 
c3f74ae35d5570b68d668525fa24abb62f9386eb0e87a4e42958683571ce4514f57ac86e5a4d74672afa26904ffb108b849fb3dd83110ad6af79bd1a8aed8b79
 Size (helix/tree-sitter-regex-e1cfca3c79896ff79842f057ea13e529b66af636.tar.gz) = 18119 bytes
-BLAKE2s (helix/tree-sitter-rescript-4cd7ba91696886fdaca086fb32b5fd8cc294a129.tar.gz) = d11bb09224239ade514e2df7ebff8c0948faabacd9877b394ab67a25dd47046e
-SHA512 (helix/tree-sitter-rescript-4cd7ba91696886fdaca086fb32b5fd8cc294a129.tar.gz) = 
770068433bea7675603a0f6ba6ea092a4125d5da3fba65ae72b80681c521b138bd63a08b13ba61266b1809f65df7ac689d061a8357277d42194759432fe24ed7
-Size (helix/tree-sitter-rescript-4cd7ba91696886fdaca086fb32b5fd8cc294a129.tar.gz) = 150676 bytes
+BLAKE2s (helix/tree-sitter-rescript-65609807c628477f3b94052e7ef895885ac51c3c.tar.gz) = de33838f2d730bdbac91df98447a3c6edfac56c9c919a2d7c1c8223d998d1160
+SHA512 (helix/tree-sitter-rescript-65609807c628477f3b94052e7ef895885ac51c3c.tar.gz) = 
9352c9e8a006e40554f82685cfa4ce7d0c2b876f04c5f8b800eef0603ef27aa99a064cf56512f94d19e066d39a7a00d25c57b4a1131f71067467f88f888a2a76
+Size (helix/tree-sitter-rescript-65609807c628477f3b94052e7ef895885ac51c3c.tar.gz) = 208294 bytes
 BLAKE2s (helix/tree-sitter-ruby-4c600a463d97e36a0ca5ac57e11f3ac8c297a0fa.tar.gz) = ea65fc27554cec2b8272df18881e4b77e8830814acbb9ad36cbdbebb01226f75
 SHA512 (helix/tree-sitter-ruby-4c600a463d97e36a0ca5ac57e11f3ac8c297a0fa.tar.gz) = 
87aa5317e7c69c17c16f94ba512e27e636a8ec274454456ca720c2b3911f2872e8e7200772dcc450f7589b0774fafe7a268f45db92431d5c4ea7510cd71fe93d
 Size (helix/tree-sitter-ruby-4c600a463d97e36a0ca5ac57e11f3ac8c297a0fa.tar.gz) = 570894 bytes
-BLAKE2s (helix/tree-sitter-rust-41e23b454f503e6fe63ec4b6d9f7f2cf7788ab8e.tar.gz) = ee562bf4239068ffd11e6313a07ee0fda2b2e37291493e29e43b0e9287ed8849
-SHA512 (helix/tree-sitter-rust-41e23b454f503e6fe63ec4b6d9f7f2cf7788ab8e.tar.gz) = 
e9f21887c42f78450d0617cbfc4a26ccf233696b772782142f0d7656d4620ddb0ff32e0c4cefb49d8806bbe255c5814fe5fcd10f0d7213bfb98c544a4aa59fca
-Size (helix/tree-sitter-rust-41e23b454f503e6fe63ec4b6d9f7f2cf7788ab8e.tar.gz) = 322848 bytes
-BLAKE2s (helix/tree-sitter-scala-0a3dd53a7fc4b352a538397d054380aaa28be54c.tar.gz) = 4c6f59062bd044ff0381bdd2d267881add2c449bbb7b11f069bd9e74458dca11
-SHA512 (helix/tree-sitter-scala-0a3dd53a7fc4b352a538397d054380aaa28be54c.tar.gz) = 
65c6675bb65671661f85d81a5af7932f4edf8af68816c64e431b9dcc56f1de04b2c41b28b686da0a9abcf7158e86abed4b57992c0675eeb9e00426597bb4d6bb
-Size (helix/tree-sitter-scala-0a3dd53a7fc4b352a538397d054380aaa28be54c.tar.gz) = 243418 bytes
+BLAKE2s (helix/tree-sitter-rust-0431a2c60828731f27491ee9fdefe25e250ce9c9.tar.gz) = c3be016c51d9ae10d32f1b89ee4bb27997e4565827513756dd9103eceafb9ff1
+SHA512 (helix/tree-sitter-rust-0431a2c60828731f27491ee9fdefe25e250ce9c9.tar.gz) = 
251f7684ba01aabb50e67abbf236d778d4d68c05cc6166cb2345eab34a862c35bee555f3be4eaa5fe1aadbd2d36c64af3d4f910c38195e95f69e702847158b9e
+Size (helix/tree-sitter-rust-0431a2c60828731f27491ee9fdefe25e250ce9c9.tar.gz) = 325754 bytes
+BLAKE2s (helix/tree-sitter-scala-140c96cf398693189d4e50f76d19ddfcd8a018f8.tar.gz) = 62fb4772f6eec21a99cc4c7a60ac4ddeea85b75e32d2ad31e948ca3402101402
+SHA512 (helix/tree-sitter-scala-140c96cf398693189d4e50f76d19ddfcd8a018f8.tar.gz) = 
745f17be783094b994f3b0e441f58684f73bdf04171738028b9c5813ad587a5bab89e7f09a224d56e534e1392025d5f8473478320c06fc4b85921685718a752a
+Size (helix/tree-sitter-scala-140c96cf398693189d4e50f76d19ddfcd8a018f8.tar.gz) = 530301 bytes
 BLAKE2s (helix/tree-sitter-scheme-27fb77db05f890c2823b4bd751c6420378df146b.tar.gz) = ef2ad90bda9e43df82feaeff2c20d1a75419b684cdbe464280d1b2bc2f11a008
 SHA512 (helix/tree-sitter-scheme-27fb77db05f890c2823b4bd751c6420378df146b.tar.gz) = 
9ac9bf1677b08fef67045656ef84154bd8d54beff1680562c4179b54108f3d68915ad135d60628eea77c8e878efdd234663c8bccb6675505e78526ecac0f88fe
 Size (helix/tree-sitter-scheme-27fb77db05f890c2823b4bd751c6420378df146b.tar.gz) = 117427 bytes
@@ -609,15 +870,18 @@ Size (helix/tree-sitter-scss-c478c686864
 BLAKE2s (helix/tree-sitter-slint-0d4dda94f96623302dfc234e06be62a5717f47da.tar.gz) = 156352e65c9625dfc60ce1b573abf3019e415b46bda3369f6d2babf2e93e90a7
 SHA512 (helix/tree-sitter-slint-0d4dda94f96623302dfc234e06be62a5717f47da.tar.gz) = 
fb60e6fdb785b5ef2e27d776c53cd6f3dad2c8f6c1d679e75355e3ca59e718e678372561008d5b5606ed2e813904161e67cb79c414b93c8d53e0d0a3b2a69740
 Size (helix/tree-sitter-slint-0d4dda94f96623302dfc234e06be62a5717f47da.tar.gz) = 1170376 bytes
-BLAKE2s (helix/tree-sitter-solidity-f3a002274744e859bf64cf3524985f8c31ea84fd.tar.gz) = d66fc7b471ce53fcc2861bd23a10a88de299c6e32da929d2716f911bd188875b
-SHA512 (helix/tree-sitter-solidity-f3a002274744e859bf64cf3524985f8c31ea84fd.tar.gz) = 
33bdae73bf388629efb07092899a9d2a9cf673ecb8991f109dee88b5948af5825d64b24d251d2f8cfd127889e0ca675ad6fc68e769e9be0610922187802065ba
-Size (helix/tree-sitter-solidity-f3a002274744e859bf64cf3524985f8c31ea84fd.tar.gz) = 188554 bytes
-BLAKE2s (helix/tree-sitter-sql-0caa7fa2ee00e0b770493a79d4efacc1fc376cc5.tar.gz) = d2cea6a8656785c4136d40dbea5bde65c50ff6f3af2928e9b395e8666a9c08f1
-SHA512 (helix/tree-sitter-sql-0caa7fa2ee00e0b770493a79d4efacc1fc376cc5.tar.gz) = 
51e1add094fc0d07b93c035d37f677ff31295901f60d1655530b17efea3e15b74cb26a5ea481a9902e8310fab40fcaba2f1bae39695d270e966cb2538c20276b
-Size (helix/tree-sitter-sql-0caa7fa2ee00e0b770493a79d4efacc1fc376cc5.tar.gz) = 98677 bytes
-BLAKE2s (helix/tree-sitter-ssh-client-config-769d7a01a2e5493b4bb5a51096c6bf4be130b024.tar.gz) = 72a5203f7f20bc3aace5bc70926ab2f3d383a179fc5b3243fe790a787abb20f5
-SHA512 (helix/tree-sitter-ssh-client-config-769d7a01a2e5493b4bb5a51096c6bf4be130b024.tar.gz) = 
f3e7b42db73b728e52c4237bd23773bfd8355df05307704967c7da639e3397848d06087f88f4ed9e23179219636afd9115822ca48dd24f1883a9ad6a2458fc5f
-Size (helix/tree-sitter-ssh-client-config-769d7a01a2e5493b4bb5a51096c6bf4be130b024.tar.gz) = 288631 bytes
+BLAKE2s (helix/tree-sitter-sml-bd4055d5554614520d4a0706b34dc0c317c6b608.tar.gz) = 667d1b24f0347b923675a0b34089246e2bd5bf718d07cef856dd7525539eec19
+SHA512 (helix/tree-sitter-sml-bd4055d5554614520d4a0706b34dc0c317c6b608.tar.gz) = 
3de90c1853de610503506abe4ba0b77a189914149e9a4c03059c3e96d0777feb84b289a2b7b000ac59341aa13f0938208ef7aa3b5fcea1ce2d3b4493f991b3ab
+Size (helix/tree-sitter-sml-bd4055d5554614520d4a0706b34dc0c317c6b608.tar.gz) = 803804 bytes
+BLAKE2s (helix/tree-sitter-solidity-9004b86531cb424bd379424cf7266a4585f2af7d.tar.gz) = af1c16795aa7ca8e5b00748454cca038d55dcb07dcdea387eb6525dd0afaaa4d
+SHA512 (helix/tree-sitter-solidity-9004b86531cb424bd379424cf7266a4585f2af7d.tar.gz) = 
e8d53f867a67511e5bf787d3e91043c0abbc7bb5ba60636d951a8f2dd5fa6ca682eb13dce183d8d371b84a596e30f37d917fefec1ea843b7f86a7e865f046abe
+Size (helix/tree-sitter-solidity-9004b86531cb424bd379424cf7266a4585f2af7d.tar.gz) = 181138 bytes
+BLAKE2s (helix/tree-sitter-sql-2743c7b5e710e6854d4e8c14c302548b436e2a1f.tar.gz) = 37c0f5fa8e4089484d01404d9c6e2527846f054e177c91dc46f9c615f3128820
+SHA512 (helix/tree-sitter-sql-2743c7b5e710e6854d4e8c14c302548b436e2a1f.tar.gz) = 
6def977d3a62462569cd77ec094c0ede33b40eec51624a6f9cb2e197897d4fad6926e78950be7d1eb3c5d95c816d986fd24ea78d545764a83503cfe423a3a160
+Size (helix/tree-sitter-sql-2743c7b5e710e6854d4e8c14c302548b436e2a1f.tar.gz) = 154509 bytes
+BLAKE2s (helix/tree-sitter-ssh-client-config-e45c6d5c71657344d4ecaf87dafae7736f776c57.tar.gz) = 5db6843ca5be02373eca46d32ef1f5e74f4b2d94a3ebed2c36b4de45e9027203
+SHA512 (helix/tree-sitter-ssh-client-config-e45c6d5c71657344d4ecaf87dafae7736f776c57.tar.gz) = 
ae6e925897b5b6ef05b6515b3ee7904914d7ea439d514a35495f753b185ce696e5e3abf61d850d1efcbc8e947baa07394469944a03129bd6260ed85760fd2a8b
+Size (helix/tree-sitter-ssh-client-config-e45c6d5c71657344d4ecaf87dafae7736f776c57.tar.gz) = 496414 bytes
 BLAKE2s (helix/tree-sitter-svelte-349a5984513b4a4a9e143a6e746120c6ff6cf6ed.tar.gz) = 54649b3afe68b8f06c9a1b2927d09140441e823e7ba310a32602eb02fd8816ff
 SHA512 (helix/tree-sitter-svelte-349a5984513b4a4a9e143a6e746120c6ff6cf6ed.tar.gz) = 
9400b6ee55b18d49ee35d2f96bac22810d9cf0b39fb9d54cb4ee0a216e7c2cf8dca8e74602c30c339fb4d6dc9d1178de7db02dcb98e09c311e3a347ee4812028
 Size (helix/tree-sitter-svelte-349a5984513b4a4a9e143a6e746120c6ff6cf6ed.tar.gz) = 60273 bytes
@@ -636,12 +900,12 @@ Size (helix/tree-sitter-toml-7cff70bbcbb
 BLAKE2s (helix/tree-sitter-tsq-48b5e9f82ae0a4727201626f33a17f69f8e0ff86.tar.gz) = 29a786f5071408703c3907ac6c4a4d1763999beb50cff9e4999bc78a139101c0
 SHA512 (helix/tree-sitter-tsq-48b5e9f82ae0a4727201626f33a17f69f8e0ff86.tar.gz) = 
9cde3e3053b57b1ba9794a9685f59443fe72e5d730f2b948485a212ef8b9f8be9a88d0509560ca96dab374b186419f405c265a221d029243b7e9cdea968400c5
 Size (helix/tree-sitter-tsq-48b5e9f82ae0a4727201626f33a17f69f8e0ff86.tar.gz) = 15047 bytes
-BLAKE2s (helix/tree-sitter-twig-b7444181fb38e603e25ea8fcdac55f9492e49c27.tar.gz) = 7e262dbbe249cced7a07abc64c06b9e5379f5829f4c0c321a231b504a184c461
-SHA512 (helix/tree-sitter-twig-b7444181fb38e603e25ea8fcdac55f9492e49c27.tar.gz) = 
7af979d0200ced9ea6e640ea7902c2781f4f5033a39ebbc07c5502a117e83868706127b52a5f14271797e6ce704c6c90c25fb67bc7bb4035f32d1ead8f39aade
-Size (helix/tree-sitter-twig-b7444181fb38e603e25ea8fcdac55f9492e49c27.tar.gz) = 9481 bytes
-BLAKE2s (helix/tree-sitter-typescript-3e897ea5925f037cfae2e551f8e6b12eec2a201a.tar.gz) = 0260c5ce110b2a87950f21290ddc45bd5d0699decf751bf6807d99c4fbd4e9fe
-SHA512 (helix/tree-sitter-typescript-3e897ea5925f037cfae2e551f8e6b12eec2a201a.tar.gz) = 
e902f21b020b664a5a2a9fd4e18fc05c65f2a11067561a7c5bdbd0f005414ccc6d3f1bf09b407eacb9096f948ed1221cab7b64e1f408558b54c66e610315d4d4
-Size (helix/tree-sitter-typescript-3e897ea5925f037cfae2e551f8e6b12eec2a201a.tar.gz) = 990956 bytes
+BLAKE2s (helix/tree-sitter-twig-807b293fec3fead64f54c64fdf6fb05516c032b9.tar.gz) = 47d50a7d44c591a21f5f3ef07d27e81ee295c23ff86a2ff38257aca8632bc1ee
+SHA512 (helix/tree-sitter-twig-807b293fec3fead64f54c64fdf6fb05516c032b9.tar.gz) = 
58e70ed1e8c23b4eb1299052e7b05b8370db37ba40b1ccecdfb1f59151163cc506813266a2e149ede4b9526bfa216a0aff079661b49402b576d7e549168d5cb9
+Size (helix/tree-sitter-twig-807b293fec3fead64f54c64fdf6fb05516c032b9.tar.gz) = 221835 bytes
+BLAKE2s (helix/tree-sitter-typescript-6aac031ad88dd6317f02ac0bb27d099a553a7d8c.tar.gz) = 8cf263e540e5d4812b8439ba3f45e2845c0b99679e1f3679027de27b69beaa06
+SHA512 (helix/tree-sitter-typescript-6aac031ad88dd6317f02ac0bb27d099a553a7d8c.tar.gz) = 
99f5ec91899c45aa1d3d5166eab44f26e768227022c316e29780e67f50d318df6a67ac1f162d70bf7fc885d7e46b0f424e2f99d011179aa9ceb1e0df72dfddb8
+Size (helix/tree-sitter-typescript-6aac031ad88dd6317f02ac0bb27d099a553a7d8c.tar.gz) = 716272 bytes
 BLAKE2s (helix/tree-sitter-ungrammar-0113de880a58ea14f2a75802e9b99fcc25003d9c.tar.gz) = 6083dd50ec1784d058e5ac88944bd2a2f6d2376ea3266530d5149b00da1c75b4
 SHA512 (helix/tree-sitter-ungrammar-0113de880a58ea14f2a75802e9b99fcc25003d9c.tar.gz) = 
5339c61928c1a1102dec9cc001687e089a6d9014fd5d1bcb0f6605554c3804555c54504716b8b4c965ba85dd7e6f7bf676a638200f7c1c3ffc3b24d56c86ae63
 Size (helix/tree-sitter-ungrammar-0113de880a58ea14f2a75802e9b99fcc25003d9c.tar.gz) = 9297 bytes
@@ -651,48 +915,66 @@ Size (helix/tree-sitter-vala-c9eea93ba2e
 BLAKE2s (helix/tree-sitter-verilog-514d8d70593d29ef3ef667fa6b0e504ae7c977e3.tar.gz) = c54d93218a5b3794e2dc3910c8cd88eaca30aceccd8ce97d414a87d3bf811702
 SHA512 (helix/tree-sitter-verilog-514d8d70593d29ef3ef667fa6b0e504ae7c977e3.tar.gz) = 
c05a7e4c910ba9f835adf17397806ad1a1fc972e6e30d859a4a093a132ed103e2dfaae98a000af50835c801659a17c8d000e5de0d7bd2f77631f0add85a67b34
 Size (helix/tree-sitter-verilog-514d8d70593d29ef3ef667fa6b0e504ae7c977e3.tar.gz) = 2670801 bytes
+BLAKE2s (helix/tree-sitter-vhs-c6d81f34c011c29ee86dd73b45a8ecc9f2e2bdaf.tar.gz) = 03048befd7ef3ba8176822c036a30a760d9ef2ea02cd87ef7e87d5363466cd5a
+SHA512 (helix/tree-sitter-vhs-c6d81f34c011c29ee86dd73b45a8ecc9f2e2bdaf.tar.gz) = 
556410e8f1f63d83372720336983fd102de411158b4eeca5aa5077377f2e995b074b480bccd36059a99705a5f17c625d4bc11d150941665c29ae042a0d3b3cd3
+Size (helix/tree-sitter-vhs-c6d81f34c011c29ee86dd73b45a8ecc9f2e2bdaf.tar.gz) = 16910 bytes
 BLAKE2s (helix/tree-sitter-vue-91fe2754796cd8fba5f229505a23fa08f3546c06.tar.gz) = 2399fc169285363a22163354300aab2cbd6f10762ee9d97a6f175a0260317703
 SHA512 (helix/tree-sitter-vue-91fe2754796cd8fba5f229505a23fa08f3546c06.tar.gz) = 
25aef74a2f8724357a5f56d2988a2ce5125b0c26b16e57e6a1db9e91e312d3c0f558ac0d28e352d4c435310ed58c0d6fe5a24a7734804c6ce43e7e7575f61999
 Size (helix/tree-sitter-vue-91fe2754796cd8fba5f229505a23fa08f3546c06.tar.gz) = 157765 bytes
-BLAKE2s (helix/tree-sitter-wgsl-f00ff52251edbd58f4d39c9c3204383253032c11.tar.gz) = 05656eba709efe064ad888ad353216c451064edbbc46afbd5ed5584e523a25a5
-SHA512 (helix/tree-sitter-wgsl-f00ff52251edbd58f4d39c9c3204383253032c11.tar.gz) = 
602320f0048c9da4b9bfce36b23fba653b8c37f3442aecee93412eb94549ea45cf21b317933235401b688656dd71833f9eac019f0c552bb726210ecbe07c6b7b
-Size (helix/tree-sitter-wgsl-f00ff52251edbd58f4d39c9c3204383253032c11.tar.gz) = 4536581 bytes
+BLAKE2s (helix/tree-sitter-wasm-2ca28a9f9d709847bf7a3de0942a84e912f59088.tar.gz) = d256ce19ac9572ec378e507bcc604c4a4153f760ddc6445d738ae289c86e2952
+SHA512 (helix/tree-sitter-wasm-2ca28a9f9d709847bf7a3de0942a84e912f59088.tar.gz) = 
8e46c7dc9dcfb406a0b5fdb6a780cd023cf11c98969f8358783bb5c66e00cd0f5778a4ab801846af31c7f6c9072a906140fe6a945e98122f4091b3bb8f13f804
+Size (helix/tree-sitter-wasm-2ca28a9f9d709847bf7a3de0942a84e912f59088.tar.gz) = 261289 bytes
+BLAKE2s (helix/tree-sitter-wgsl-272e89ef2aeac74178edb9db4a83c1ffef80a463.tar.gz) = 3a495de4aed1a770dac8cb13bc2b4eb1379585192c56937cbdd8007d551e13e7
+SHA512 (helix/tree-sitter-wgsl-272e89ef2aeac74178edb9db4a83c1ffef80a463.tar.gz) = 
2cec5f31e0cc79d1e41682533d84dc23c9d639237cd37f378439043caff67ebb6e878fae0a666df2c52f1ad9766c81801806fff9b7c89dc740f253def50d9e82
+Size (helix/tree-sitter-wgsl-272e89ef2aeac74178edb9db4a83c1ffef80a463.tar.gz) = 4534014 bytes
+BLAKE2s (helix/tree-sitter-wit-c917790ab9aec50c5fd664cbfad8dd45110cfff3.tar.gz) = 008a4db8c924e87c7cdfff2bb427109feac57357f50373ee238f6b69a1c78cad
+SHA512 (helix/tree-sitter-wit-c917790ab9aec50c5fd664cbfad8dd45110cfff3.tar.gz) = 
6bd1222a48d8f4c2bdb31e6647ba366966d8903e14178298bd047811f11e3373a0de0c24f7c461013fc2eac4d2428946a92152355facc3f2a164e1884420ec4d
+Size (helix/tree-sitter-wit-c917790ab9aec50c5fd664cbfad8dd45110cfff3.tar.gz) = 17587 bytes
 BLAKE2s (helix/tree-sitter-xit-7d7902456061bc2ad21c64c44054f67b5515734c.tar.gz) = 02f789749249165693eae4285bd72132d127cedc1f81b565130c89ded5a81b26
 SHA512 (helix/tree-sitter-xit-7d7902456061bc2ad21c64c44054f67b5515734c.tar.gz) = 
877078003d2aa53153bc41b62bcd602cba4c24609499ba780c063acdd69b1d5f59f6f7ddbe22a69754dc64f13e0443f444a9b78d2d570aa12782752c7fb543e1
 Size (helix/tree-sitter-xit-7d7902456061bc2ad21c64c44054f67b5515734c.tar.gz) = 12323 bytes
+BLAKE2s (helix/tree-sitter-xml-422528a43630db6dcc1e222d1c5ee3babd559473.tar.gz) = 64798ffcb260176521f44a88d568a36b47dfc3a53e0732c3276d844636c5aa9d
+SHA512 (helix/tree-sitter-xml-422528a43630db6dcc1e222d1c5ee3babd559473.tar.gz) = 
bb4025ef2a72102bce6c25e0caa7c99814156e3f06a763313bf51317f4125694f3054c5f372bab0407e07870b48151af2210733323051546d3932aaaf3b0fc84
+Size (helix/tree-sitter-xml-422528a43630db6dcc1e222d1c5ee3babd559473.tar.gz) = 60281 bytes
 BLAKE2s (helix/tree-sitter-yaml-0e36bed171768908f331ff7dff9d956bae016efb.tar.gz) = e0c35849128ae7c29b832d2e152a55a75cacd1020ecc54edaf25700ff38312f4
 SHA512 (helix/tree-sitter-yaml-0e36bed171768908f331ff7dff9d956bae016efb.tar.gz) = 
6146fb39874f119568a08b656fb6ca5bbff1a79684322b9502819b43999be7596c8d8b64c6a2f0777770baadd1bec26a4de9d48addd2569b59b809cbb57b9d19
 Size (helix/tree-sitter-yaml-0e36bed171768908f331ff7dff9d956bae016efb.tar.gz) = 266363 bytes
-BLAKE2s (helix/tree-sitter-zig-93331b8bd8b4ebee2b575490b2758f16ad4e9f30.tar.gz) = 161340e9f98e20855898d9c47f665899ee9c0214d32a3e7d74e63831c37d3d6b
-SHA512 (helix/tree-sitter-zig-93331b8bd8b4ebee2b575490b2758f16ad4e9f30.tar.gz) = 
a6ff2e019f5f4b8bb20ddd470e33d3ff19390ea075871355f9b77797fc953690853f8766b27274696dc1f5321861a0e6d69f05dde39ba86bbde178b9acc7e7fc
-Size (helix/tree-sitter-zig-93331b8bd8b4ebee2b575490b2758f16ad4e9f30.tar.gz) = 730911 bytes
+BLAKE2s (helix/tree-sitter-zig-8d3224c3bd0890fe08358886ebf54fca2ed448a6.tar.gz) = 24c90d116f7a76099d8a77e96a67c863dd5bce714be159623903042d150d40b7
+SHA512 (helix/tree-sitter-zig-8d3224c3bd0890fe08358886ebf54fca2ed448a6.tar.gz) = 
982804c06788b8dab60cd650f2c7c15f509059bf20285b29340d59f8522975d0738c7eb2f94f43e0a3e9f52e6f92489e3c1f2899ee7bedeef4f8cc2dddfeea50
+Size (helix/tree-sitter-zig-8d3224c3bd0890fe08358886ebf54fca2ed448a6.tar.gz) = 731793 bytes
 BLAKE2s (helix/unicase-2.6.0.crate) = 389082bf2c60fa4668d7b943d6eebc3a78d540e5f1525582ffbad9b7eee8b024
 SHA512 (helix/unicase-2.6.0.crate) = 7e76a5f344e32c56cf87223585d87a56c79627b52bba0b29eb6de82de874b2964accededa8e9b5741f57944b6750fba5c61e679a50d4fd5a5646f431e2f4f188
 Size (helix/unicase-2.6.0.crate) = 23478 bytes
 BLAKE2s (helix/unicode-bidi-0.3.8.crate) = e6dc0f6f397e3fe1d485ab610cc1e43fcf541060e8671f3b26ae3a11522ec031
 SHA512 (helix/unicode-bidi-0.3.8.crate) = 810b5be48159ecbca542c715496f279518285c3b09f7c39451986f94e6c259fab1057512a2148bf99ba9abf76e861a24456b547cc2273f0b45ed5d3ce9dfe3d5
 Size (helix/unicode-bidi-0.3.8.crate) = 36575 bytes
-BLAKE2s (helix/unicode-general-category-0.5.1.crate) = 0ce6a4e6dbe4f6185f8851660380aa309d1b5be483b282421002b11ba46aa779
-SHA512 (helix/unicode-general-category-0.5.1.crate) = 952041a674f0fc166b0e7dd7da3d655b955e55b563283bc83a4cdcb50b86e98c74d7acf49cf2d413c6bad6aa5af29c689d85fb9b9f54898493b5d74a108e6dc3
-Size (helix/unicode-general-category-0.5.1.crate) = 34919 bytes
-BLAKE2s (helix/unicode-ident-1.0.3.crate) = e6b920a5b9171a01d6907b752d80c8b5c044e0fff61e8c4820aef803eb024171
-SHA512 (helix/unicode-ident-1.0.3.crate) = 7ebdcfd7131a0e7a834f7e973b9cf813495259e0a0606539623d3f9bb51f9c6414908e71281d6a77397021e48d41c400a704c65990aaa8ca8d0a6095d9b3ed47
-Size (helix/unicode-ident-1.0.3.crate) = 35031 bytes
-BLAKE2s (helix/unicode-linebreak-0.1.2.crate) = 7f782c5be096c6b07c62682b7859535f77f77df3285fcbc7aa01cde38325ee57
-SHA512 (helix/unicode-linebreak-0.1.2.crate) = 170db67d6d74df913dffc921986b92df8a2ba68776ddb17c8ffca51d0d4bee597a5460591e7ba593c1eaec8b6227956f4e0f9b11d217aed4ee85cf46f1be5277
-Size (helix/unicode-linebreak-0.1.2.crate) = 69293 bytes
-BLAKE2s (helix/unicode-normalization-0.1.21.crate) = 7ac30222afd8a5e9574b2fc4f1266243edebd340c4f40e8d3feebbd2cb9712a1
-SHA512 (helix/unicode-normalization-0.1.21.crate) = 2994104d3393a117cf3eafc147ec9599c870b3bd4fbd096980534c8aeb48c6ba05bcf3f9804e3f2a0148940186dfb27871b23a991360bf8253a5a644f3cdcb12
-Size (helix/unicode-normalization-0.1.21.crate) = 121745 bytes
-BLAKE2s (helix/unicode-segmentation-1.9.0.crate) = fdcf49e933d6dbe0684fc2e1e172f784ff19668d56ff5be2efcaefa06a0a6b0c
-SHA512 (helix/unicode-segmentation-1.9.0.crate) = 7d0ea37bfb24a1a803b1cd40b7b0c0e6e44ebf9a474fdedf0dcca1ead25662e19f44af29b87de1b000c3cc75fec93320938bb3ab9d9e82298eda324bb97e7294
-Size (helix/unicode-segmentation-1.9.0.crate) = 93241 bytes
-BLAKE2s (helix/unicode-width-0.1.9.crate) = 2c6be29baaa9f1c7b48cc6251da5aff0f9ee755d8ff1cc058dd0c084643e546c
-SHA512 (helix/unicode-width-0.1.9.crate) = 0f5ec46c57e3b5e50cb8430c89db8d9c129e80ca11a9c398b5312bfe95001e19ca3efbfeb01c3ac09c4ce7e26c6ee1f352f7e114ecef78cefd68c54d2d50f5f4
-Size (helix/unicode-width-0.1.9.crate) = 16745 bytes
-BLAKE2s (helix/url-2.2.2.crate) = da92f066a903f6e41cc3175d605393f0243ebd8c0a6ec8bfedf53ea619feac86
-SHA512 (helix/url-2.2.2.crate) = f9b6ad99d69ff303283b3fd9e98945fbd6cb411a3d141badcbb3a0566723a451375e6dd5d5357e3eb7a1b5b1ee5756a2347c43817db2de6fe35b9004b090e077
-Size (helix/url-2.2.2.crate) = 68555 bytes
+BLAKE2s (helix/unicode-bom-1.1.4.crate) = 8050973f0dae99ad4723f00895babcb5b4933a82bcd4bef12bd4177cac596c23
+SHA512 (helix/unicode-bom-1.1.4.crate) = c10c42a23822763f1327518d43237b9e2b2d2c9cfd4839d990beb8c85be7cb1cbc528514ec5f4428bd486bd59ce9036a7f980f2aa76c1a28aed2f3a57dcc7343
+Size (helix/unicode-bom-1.1.4.crate) = 10221 bytes
+BLAKE2s (helix/unicode-general-category-0.6.0.crate) = 5f1a419ca8289f51384ce3efc67cf4e2895198b45407e5eb43afa2ca0e7086aa
+SHA512 (helix/unicode-general-category-0.6.0.crate) = 3e4b50b64ce992fa488441105c1264ca84b1f09181e393dfb6843da2f6e2ec294024cf8b62161aa6e8757bedad360ef99b6ca838379c38fba8b08c5da9cce1d5
+Size (helix/unicode-general-category-0.6.0.crate) = 35177 bytes
+BLAKE2s (helix/unicode-ident-1.0.5.crate) = f6ef43eb4434b40a5cdc6df4d7706a63544a01ea7a54d96083cbf0442442dcfc
+SHA512 (helix/unicode-ident-1.0.5.crate) = d355370daac356d900cd4c0a792d6c0eff114524c4bffce4d7e74469fe2117883ee00bf0e27d950b72e88739473f2045d5f83440a0aedfede97b4d9163b64a6c
+Size (helix/unicode-ident-1.0.5.crate) = 35455 bytes
+BLAKE2s (helix/unicode-linebreak-0.1.4.crate) = f7f7b7ead2ce832097bc4387eaf8be63c8dd87a85d3562bd29130d6c249f308c
+SHA512 (helix/unicode-linebreak-0.1.4.crate) = 4c4a1cb4d8d9563740a6a5bc8ea5db8bab88b1cfbd751fdf33dbdb3923478a4bb716e3ce7441aca0d84426894834959cbc845f3cc2bc1379c5935019dc3f703d
+Size (helix/unicode-linebreak-0.1.4.crate) = 74962 bytes
+BLAKE2s (helix/unicode-normalization-0.1.22.crate) = 2b18e16ecf7fc6163fa8668a3e454d9f1262024700dd4a2062189efbe9164094
+SHA512 (helix/unicode-normalization-0.1.22.crate) = a5810d5e9cd93dbb80e013997aa9d38e60834619483a6623eb2859ec5d59a5aec3fc4db123dc7f4e2fe9f2b8799cf6af48bdff22d69a00a23707240e8bf3bb3c
+Size (helix/unicode-normalization-0.1.22.crate) = 122604 bytes
+BLAKE2s (helix/unicode-segmentation-1.10.0.crate) = 47e55ed2ba722d1c0c80de12c86f97b7a342e10f6ada52805e91fc6b6fc7be10
+SHA512 (helix/unicode-segmentation-1.10.0.crate) = e6a1baacb557a5a7ed7ff780c542c5947eb473763eb2a6018cb1e0a1abb9f4bf3f8073610e4897393f15df076f6657a0f162a5c5bb7ed5f3b3fd832e533a522c
+Size (helix/unicode-segmentation-1.10.0.crate) = 93893 bytes
+BLAKE2s (helix/unicode-width-0.1.10.crate) = e66d8140c18f2e4f3e4eee069114d5d3679b5885bd0fdff01989b7ce1b35983d
+SHA512 (helix/unicode-width-0.1.10.crate) = 9836a8d489d18ea1ecfe1957ed6d5da7dce825e138cd1848aef093fa8d2eb83fcf01eabb1a2446df4f5ede4e67316e9e81b5d58b59d4e8c5d67870e8fa5dca3b
+Size (helix/unicode-width-0.1.10.crate) = 18968 bytes
+BLAKE2s (helix/url-2.3.1.crate) = 858c526f2b867f39b488180c2d8cc3c47084bf1cbc95218f856092dff39c193f
+SHA512 (helix/url-2.3.1.crate) = 8224010bef067574481e5d84100d944782d52b49db7c396ae2b4dfc145ed58769c15440d97a0fed4d2f9857592a8601417cc5b1bdea959c47a3e7a1f7182ed0d
+Size (helix/url-2.3.1.crate) = 72777 bytes
+BLAKE2s (helix/utf8-width-0.1.6.crate) = e9b46de4d57c95325a7f9ef74e2ae8f5478bbfed555ce3ca3295adc1efdb3137
+SHA512 (helix/utf8-width-0.1.6.crate) = 2c51e38c7fa2a2c113ff74164067e49e2e615048144f3065c228a965804029447f7a1e65d926facccb8332a2ab2be02fffb7413d8eee6f883d941909b350844c
+Size (helix/utf8-width-0.1.6.crate) = 2935 bytes
 BLAKE2s (helix/version_check-0.9.4.crate) = a26f24d5e2c5e631462ebe434aa239957f5102009d3824d5dff2bc90d3c79fb0
 SHA512 (helix/version_check-0.9.4.crate) = b172dc9a3759a4a683ffc39b9a40b03b9974b626a088217de87090466cef695226557c226cf3e469b2b25ee7297b7eb0d7719878cab42457f80146a81943c0c8
 Size (helix/version_check-0.9.4.crate) = 14895 bytes
@@ -705,21 +987,21 @@ Size (helix/walkdir-2.3.2.crate) = 23516
 BLAKE2s (helix/wasi-0.11.0+wasi-snapshot-preview1.crate) = f023780bb2e4a8571dcb1012e76cfbfc3804df53b89abd5cd8ede9d7c5847d4c
 SHA512 (helix/wasi-0.11.0+wasi-snapshot-preview1.crate) = 043500ab28cd9cb779475255da5d109ebab7fccca72b64873dc28d77bc5a157ba8d96b9e8f05223b5b36c7089bb7b4ba87657fc69bac16b78972f897294a865f
 Size (helix/wasi-0.11.0+wasi-snapshot-preview1.crate) = 28131 bytes
-BLAKE2s (helix/wasm-bindgen-0.2.82.crate) = dfe1a573bfaf9aecc1dc12ddb23e127906ac0572024d3f29741b84cc73240040
-SHA512 (helix/wasm-bindgen-0.2.82.crate) = 406b8c0388d6e6c5bc45158819fb57ee05d30a48c776c3e40490512f5f14c04f4da59d2a74d4ae00cbcc16146b0c921f554aebdc79ca9159c24c5dfd7e514b99
-Size (helix/wasm-bindgen-0.2.82.crate) = 166376 bytes
-BLAKE2s (helix/wasm-bindgen-backend-0.2.82.crate) = 6891944df9d83c4afcc5710409543073e0f7327632acd4738c555df33e3561bf
-SHA512 (helix/wasm-bindgen-backend-0.2.82.crate) = 07b3b45959c768b4aa9b12c287774036650e067998c18132a6ac56df735e0e647e998ee00cad8c27bff43efdb6d7d7a1778356dffc4c138af3b32e602b62e179
-Size (helix/wasm-bindgen-backend-0.2.82.crate) = 25764 bytes
-BLAKE2s (helix/wasm-bindgen-macro-0.2.82.crate) = 8bd414bb9a34d411bb900e349034dd944f00c8740e05ebe7e1dd072736ebac6c
-SHA512 (helix/wasm-bindgen-macro-0.2.82.crate) = 718f37425ab7c1e5e98149142f2dab98f1810d0af1c3047272421fa9f4081e1735c3a30b6a45f934d7d622d6f86fdd0cd4e1b7ac57803e20257da5fc28ee1ac9
-Size (helix/wasm-bindgen-macro-0.2.82.crate) = 11808 bytes
-BLAKE2s (helix/wasm-bindgen-macro-support-0.2.82.crate) = 111b243c08c11d57a293dc1939733d72d49749d44a7a458c593e184a513607eb
-SHA512 (helix/wasm-bindgen-macro-support-0.2.82.crate) = 18c72aa0e5e324e646d8d6ab5da29f068d9c3b0e0c8f54eace2ff0b36b85625d017bcb69e0e958845171b2a7fff3122b22b9815a08ec93bf32c7b44b62d9f94a
-Size (helix/wasm-bindgen-macro-support-0.2.82.crate) = 18529 bytes
-BLAKE2s (helix/wasm-bindgen-shared-0.2.82.crate) = 914381f20c9832773f71bb9a27eb1e5ca9f2dd567e7a759912106a9baf78122c
-SHA512 (helix/wasm-bindgen-shared-0.2.82.crate) = 58ef55f039f1e47047886d7ef617f20db616dd7790c74bca625a87b9e32600d82a9322730b9acf29a8cd22a82930c6ea6eb7e76b54cc653c9ce8cf2b43ca646a
-Size (helix/wasm-bindgen-shared-0.2.82.crate) = 7197 bytes
+BLAKE2s (helix/wasm-bindgen-0.2.83.crate) = 11e62e99a833a8319d3979fa605adcefa43f91351b0b1cfcc2be802c6e8ae8c0
+SHA512 (helix/wasm-bindgen-0.2.83.crate) = ec93d1334417d0329e113d5f2da7f16c0f1209d71e5cbd21a2dc9278d877e70ca2327ff7863b40505504883ed51d6bf20dda98c22ef44011a47c604a7b44e82d
+Size (helix/wasm-bindgen-0.2.83.crate) = 169618 bytes
+BLAKE2s (helix/wasm-bindgen-backend-0.2.83.crate) = 5ce83b88f2324420760f6392de6d6d58797c75921815885a3b53df00674d3c8d
+SHA512 (helix/wasm-bindgen-backend-0.2.83.crate) = dd1b65733e4d0a198d61a5287bb75db3e03ef738d2c2dcd3ce3e873c27d41c90cfcbb775ad40b2a546190db8d7213e5866f8e3f9913c28fe4b43a49054bfea44
+Size (helix/wasm-bindgen-backend-0.2.83.crate) = 25620 bytes
+BLAKE2s (helix/wasm-bindgen-macro-0.2.83.crate) = 59c8c31210e73379318fbb5505764149070a44c9850856e6e6d86bef3a5c7dd4
+SHA512 (helix/wasm-bindgen-macro-0.2.83.crate) = eb83e06f998e858cf25494c1d171984269e72db798147d4d1d8aeeb25ea7a35c5986b882011e131968621742ceecff976430856b4e8b7d7fd7f1237767cf01b4
+Size (helix/wasm-bindgen-macro-0.2.83.crate) = 12075 bytes
+BLAKE2s (helix/wasm-bindgen-macro-support-0.2.83.crate) = 40c9cc37ac2f23b27abaebc629ce294ebdc45d236abafaf4a332afad548cb0d4
+SHA512 (helix/wasm-bindgen-macro-support-0.2.83.crate) = 804014c75ae5f8c1c7f0fad3f3209887fa346d74029e5f6e1830e44f7318719e65c4a643c71d87cf388f131fd370af40d536bbc15fc11c25b91cb785f56a908b
+Size (helix/wasm-bindgen-macro-support-0.2.83.crate) = 18530 bytes
+BLAKE2s (helix/wasm-bindgen-shared-0.2.83.crate) = ede51748e073d8c55f760b721e9bf6c9dfaed4260286f89c204d4b0806ad3ad8
+SHA512 (helix/wasm-bindgen-shared-0.2.83.crate) = 2bfc1a068fa41a9ecacce7bda494fc0485c57ccb102c1d76c87a42e00ad30b944b0cb788642e8339d050a0e831ce8306844a77292ab9f79ed765b65cdb4765e7
+Size (helix/wasm-bindgen-shared-0.2.83.crate) = 7194 bytes
 BLAKE2s (helix/which-4.3.0.crate) = 69f3e44058d0886dc94c0dcacd5b0998e2d8a188df8130ac4a18a1b02c348111
 SHA512 (helix/which-4.3.0.crate) = cad05bd43dfcf9e50fd6e3b9dcd5d9a987175a0f44adbf204079117b70d0b42e6483e635287924698c51d0452f168e48e041453f18ff5720c0e2ec4c734d2578
 Size (helix/which-4.3.0.crate) = 9635 bytes
@@ -735,24 +1017,54 @@ Size (helix/winapi-util-0.1.5.crate) = 1
 BLAKE2s (helix/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 85ecec73b9874f5f443e29d99f93a11889e74ddf5a4bfeb929e2355a7cee32f1
 SHA512 (helix/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 4a654af6a5d649dc87e00497245096b35a2894ae66f155cb62389902c3b93ddcc5cf7d0d8b9dd97b291d2d80bc686af2298e80abef6ac69883f4a54e79712513
 Size (helix/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 bytes
-BLAKE2s (helix/windows-sys-0.36.1.crate) = ab3b62a1b06c38f19cfcd08c5de5c908acbc447fb547ac9275d29f20d49b37e8
-SHA512 (helix/windows-sys-0.36.1.crate) = 80973e461bef3be0d0d0c13d02b2129aeb0d0700768d637544315654126f101b39f980738035fe325bd96f549493a2245bd7b82511f833efa7bbcb2f62266001
-Size (helix/windows-sys-0.36.1.crate) = 3347053 bytes
-BLAKE2s (helix/windows_aarch64_msvc-0.36.1.crate) = 89c5a521e303e220f89b21580b63a35cbfd84eba4cf0674b9b9b9291342a4c08
-SHA512 (helix/windows_aarch64_msvc-0.36.1.crate) = d0c352c78caec9c71bbaa1a688baab8f39a33c903c0492b19398c76e08194183e254ecd3a8b24af3e7e5e1d9d97373dcbab54499236829898a4fd153cfde2ccf
-Size (helix/windows_aarch64_msvc-0.36.1.crate) = 661960 bytes
-BLAKE2s (helix/windows_i686_gnu-0.36.1.crate) = 8dc61efc196f9e586c2c13e0dd0c2bd7c811693368ce9db85b99d7f50d5fe869
-SHA512 (helix/windows_i686_gnu-0.36.1.crate) = e2c60e6639beb879472a06ed4462667eb4a78385df6bcde1ca579af759cf2b4ac70e84f7dd7b736e7fbd1b129061555671fed4b83bcd81a6083cc013963194a5
-Size (helix/windows_i686_gnu-0.36.1.crate) = 818115 bytes
-BLAKE2s (helix/windows_i686_msvc-0.36.1.crate) = 39dc59107c333b6c3292aa9254f0217e7c1aa06c392676d9d483ff0f5928bf63
-SHA512 (helix/windows_i686_msvc-0.36.1.crate) = 02bb1507981229422498ce29f6c777d5e412358040128f84b09d948ccddf0461b078a0a20cc7f6ab7da8595121bb369453ae9ea1f0506aab715662e8c631e737
-Size (helix/windows_i686_msvc-0.36.1.crate) = 724575 bytes
-BLAKE2s (helix/windows_x86_64_gnu-0.36.1.crate) = 27d2263d13f1f43242839c6f6bd55ac22db13c0ebdc9c5c8762d51df1a093e7a
-SHA512 (helix/windows_x86_64_gnu-0.36.1.crate) = 598b69e4f2cd3d68f910d526a66dadb465ff30a8c261c9a4455aa1c5b952d23c04f8edaa063cd16fb43564c116a13f06d607f3a0a9c7495054b8bfe1c04d1865
-Size (helix/windows_x86_64_gnu-0.36.1.crate) = 790934 bytes
-BLAKE2s (helix/windows_x86_64_msvc-0.36.1.crate) = e48ba38c24d831da6c6db4bb434ee7df10185932b0ef6136ae605062f25b6d0d
-SHA512 (helix/windows_x86_64_msvc-0.36.1.crate) = 89c22ed51a74f531662d80ae0fa5e0215728db1e6caf3c13eaeba95a93548b43c00b8474f52553ac866ac83c203b6c22dc44fbc870e882a4c9c97ba54b87c631
-Size (helix/windows_x86_64_msvc-0.36.1.crate) = 661999 bytes
-SHA1 (patch-helix-loader_src_grammar.rs) = 24f0fe3f89a72d6d74bea8879f365fafca1def98
-SHA1 (patch-helix-loader_src_lib.rs) = 097ad311afbe4a280499e737ce1e000180cdaeba
-SHA1 (patch-helix-term_build.rs) = 7e99dd176fee35e75b680daf309241bd3d6564a3
+BLAKE2s (helix/windows-0.40.0.crate) = d8c66f084e5af0ba682538890cc7acacd5cf9379400f636706dc7b15d31124b1
+SHA512 (helix/windows-0.40.0.crate) = cad7cd12fabb55e03350ea937360f154cde93fdee1d3c5edfaf3508cda2c0f023ce306d9efd15364463ea5ecdaf27424d6a97f3b84b04e119cfb9d7fb8c73785
+Size (helix/windows-0.40.0.crate) = 11923503 bytes
+BLAKE2s (helix/windows-sys-0.42.0.crate) = c5112c52cdc0446a154d71a1d4b484b42591ed150c5c44977fbe21adacac0d81
+SHA512 (helix/windows-sys-0.42.0.crate) = b07b119688f3e3ad234d36979947f34e8e19988fb62101afbe18ec8afc9c8a4261128939df8bbb849d5c5982422cb4c50dbcba70f2bf401fbb7c605df1b2b354
+Size (helix/windows-sys-0.42.0.crate) = 3006791 bytes
+BLAKE2s (helix/windows_aarch64_gnullvm-0.40.0.crate) = e9e2527a18f5901c0af97ef653c3f4074d8a1a63cf75580d290463f70bf7c48b
+SHA512 (helix/windows_aarch64_gnullvm-0.40.0.crate) = ffc50c9ecf6ae2334d74dc39bd22b6f3b50aa3739ba5d7566ced705d69080243e7ede4832f1f869a5fab47d2aa429ae1d9fb15302b60285130991960eac60f9a
+Size (helix/windows_aarch64_gnullvm-0.40.0.crate) = 357801 bytes
+BLAKE2s (helix/windows_aarch64_gnullvm-0.42.0.crate) = 6f4ad43e5fb0329309bd3ad3c7f272beda578e863b1e38af1c985e0fd958a86e
+SHA512 (helix/windows_aarch64_gnullvm-0.42.0.crate) = 8bd60142e8982ddb14dde4e93b9753f9ac34830c05c2a1dd4568377f9a928651bf9f026a0080e5bc7dfa62a45942376736954e3ac800855d00eef0c72929f338
+Size (helix/windows_aarch64_gnullvm-0.42.0.crate) = 357917 bytes
+BLAKE2s (helix/windows_aarch64_msvc-0.40.0.crate) = 9b5ad4457a443255da724d9c9361fec77d484562fcd99aa81afb0a3eba0ff422
+SHA512 (helix/windows_aarch64_msvc-0.40.0.crate) = 81bca7030a52bee469f243c5f2008433601c7ebf207a36c4103d6a80c1571613889918d87dbeccf409c070ce2aa8c28fd09b6947b6db9a5401236fce9753e0f2
+Size (helix/windows_aarch64_msvc-0.40.0.crate) = 659307 bytes
+BLAKE2s (helix/windows_aarch64_msvc-0.42.0.crate) = 12319a1c750eaf0fcdb1744db21db37a0dfa5d3b994de6f9abfa0a34946fafa6
+SHA512 (helix/windows_aarch64_msvc-0.42.0.crate) = 20c0840adec84dde03b143e5b82bb0003fee675310487f0071a81ed7f40ee647c4018ccb9ebdbc4aeada717ec8600a30dfb15510c6b336f07becdb7167668fd0
+Size (helix/windows_aarch64_msvc-0.42.0.crate) = 659424 bytes
+BLAKE2s (helix/windows_i686_gnu-0.40.0.crate) = 7cba773d5c23327af2f937cbcdae86153895e5b5030635a55e5343bd8007cb85
+SHA512 (helix/windows_i686_gnu-0.40.0.crate) = 32ae3d60683a1df242f426f5302f26e9c7222560759e6bc23215b1bedf607e79e74d540360d7a17b6f4e9fbf0d8de3b0814e28948b49d94d7e381df9890a103a
+Size (helix/windows_i686_gnu-0.40.0.crate) = 728486 bytes
+BLAKE2s (helix/windows_i686_gnu-0.42.0.crate) = d1fbd1bce99e540da83c40703f4924fabd2bd1a784aa9c3b120a678babe30e5c
+SHA512 (helix/windows_i686_gnu-0.42.0.crate) = a24dd1ba5eb7d5231853bebadfde0575ae9071a565868d2f3d1bc6ec0a87380c569a621f0cba2552af7a1e46ac62f09f87cfbce3f674be06be1a7c1d3f421474
+Size (helix/windows_i686_gnu-0.42.0.crate) = 728570 bytes
+BLAKE2s (helix/windows_i686_msvc-0.40.0.crate) = 9e0d3f7c98029a7cda223fcf89bad2953f1bbe402051fcda9a9f020394d1afa1
+SHA512 (helix/windows_i686_msvc-0.40.0.crate) = 1e19c99959b25259750e256cfd3763df143c87aadafb44aa534ea6f04f8161e5c0f719cc97ee4d8ba8c1abb094594b5a5f6e5d27baa8aa753f4c209f701056cc
+Size (helix/windows_i686_msvc-0.40.0.crate) = 717348 bytes
+BLAKE2s (helix/windows_i686_msvc-0.42.0.crate) = 7a82d75909dddf46e4ff9eb002f00c55e9b489528908e141eec22df58724d2f6
+SHA512 (helix/windows_i686_msvc-0.42.0.crate) = 740400e2b11c1d177f7f37f844cd2a0f84b97a5adb03a7656661deb026b593a799ace8da1f9013ba9f74446fc43260d01dff7d4be607129ec7d602f341b2b4d1
+Size (helix/windows_i686_msvc-0.42.0.crate) = 717477 bytes
+BLAKE2s (helix/windows_x86_64_gnu-0.40.0.crate) = 295c93502f24a032c4c0c857d9fba19352064b542c4291d745b769ef8c3da402
+SHA512 (helix/windows_x86_64_gnu-0.40.0.crate) = 817d82bd557fa8c19dc40241a0ec955cfa313303db5389aed4bb569cb268219f58bcf8a19acf7292e42cefb1e3a5e31d44538b795155d34ad56c617cc8f6b9df
+Size (helix/windows_x86_64_gnu-0.40.0.crate) = 692354 bytes
+BLAKE2s (helix/windows_x86_64_gnu-0.42.0.crate) = 106ae3028965c0e39c00a01fba8476c0013dfdff0a2724b11a5cf36da5e9a7f5
+SHA512 (helix/windows_x86_64_gnu-0.42.0.crate) = 7df7ee0c345f0a2c37d7f9ec3a2824116b4d7a943bf245787509e67809a4f31ebb1862e212efb2d943d82ccef77a716437cdc61004396ca86e95e688368c6dae
+Size (helix/windows_x86_64_gnu-0.42.0.crate) = 692493 bytes
+BLAKE2s (helix/windows_x86_64_gnullvm-0.40.0.crate) = 936e9e07af820fda9c698250c981e1205dd1ff43f8fd8522bc276bf776a044bd
+SHA512 (helix/windows_x86_64_gnullvm-0.40.0.crate) = 26ae9edca96409e7d0e6e1fa7b3cbbeb13d86503c866c957776e0d860cd7e24d9a8699b79c7c1999a95f838f08fcf074bdf5ac0042017cde278f9c18f7e8ccda
+Size (helix/windows_x86_64_gnullvm-0.40.0.crate) = 357793 bytes
+BLAKE2s (helix/windows_x86_64_gnullvm-0.42.0.crate) = d44ce727f2ad6581decea56295765e39cd6ddbdfb4d41355265aa9fb47759eb8
+SHA512 (helix/windows_x86_64_gnullvm-0.42.0.crate) = 242e11b4a0d50a0ffe8d0e26e971de30ef4d29260ae6749403d39cb4278297a240c1ec4112bb38151cbb11a6f3c8a743e84cd75b6a76adfeaee8e623649c9ecf
+Size (helix/windows_x86_64_gnullvm-0.42.0.crate) = 357906 bytes
+BLAKE2s (helix/windows_x86_64_msvc-0.40.0.crate) = 889bc76bd658a6b2db3a8bd0b1fcdf687615666f53d6f11e5b7ca4c31cc526de
+SHA512 (helix/windows_x86_64_msvc-0.40.0.crate) = 120b6107d9f192c3cf3cd29578fe98a30135122b4d4eb6158c3bd5fd24970e6e007b3f8c5b8e7fc2258900bc15be6b157198732faa18423c3ed92ceb38b3be91
+Size (helix/windows_x86_64_msvc-0.40.0.crate) = 659258 bytes
+BLAKE2s (helix/windows_x86_64_msvc-0.42.0.crate) = 45b34c32cf2eaa5889087291bd103880d50f66180d679456bebdbfa5a330bd1a
+SHA512 (helix/windows_x86_64_msvc-0.42.0.crate) = 94d6554ae293785d2fc9dc9d53480c98bc08ab2b78bd8684a0606e7e0ec156a454c1a653d214c21de382bc7ab5d898e45000ed73e6110f679da513ffabbf3cb9
+Size (helix/windows_x86_64_msvc-0.42.0.crate) = 659377 bytes
+SHA1 (patch-helix-loader_src_grammar.rs) = a749c5c01f6c5fcdf5a8e1a62dd68dd6c68959e6
+SHA1 (patch-helix-loader_src_lib.rs) = d4c642372271ff998dfe1364ceb4a4c573eb22b6
+SHA1 (patch-helix-term_build.rs) = 1903fe0d266aedda3129dd81a5716c0bf4f0103d

Index: pkgsrc/editors/helix/tree-sitter-depends.mk
diff -u pkgsrc/editors/helix/tree-sitter-depends.mk:1.1 pkgsrc/editors/helix/tree-sitter-depends.mk:1.2
--- pkgsrc/editors/helix/tree-sitter-depends.mk:1.1     Fri Nov 11 20:23:39 2022
+++ pkgsrc/editors/helix/tree-sitter-depends.mk Wed Dec  7 17:08:38 2022
@@ -1,416 +1,133 @@
-# $NetBSD: tree-sitter-depends.mk,v 1.1 2022/11/11 20:23:39 nikita Exp $
-TREESITTER_DISTFILES+=         tree-sitter-rust-41e23b454f503e6fe63ec4b6d9f7f2cf7788ab8e.tar.gz
-SITES.tree-sitter-rust-41e23b454f503e6fe63ec4b6d9f7f2cf7788ab8e.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-rust/archive/41e23b454f503e6fe63ec4b6d9f7f2cf7788ab8e.tar.gz
+# $NetBSD: tree-sitter-depends.mk,v 1.2 2022/12/07 17:08:38 jperkin Exp $
 
-TREESITTER_DISTFILES+=         tree-sitter-toml-7cff70bbcbbc62001b465603ca1ea88edd668704.tar.gz
-SITES.tree-sitter-toml-7cff70bbcbbc62001b465603ca1ea88edd668704.tar.gz= \
-               -https://github.com/ikatyang/tree-sitter-toml/archive/7cff70bbcbbc62001b465603ca1ea88edd668704.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-awk-a799bc5da7c2a84bc9a06ba5f3540cf1191e4ee3.tar.gz
-SITES.tree-sitter-awk-a799bc5da7c2a84bc9a06ba5f3540cf1191e4ee3.tar.gz= \
-               -https://github.com/Beaglefoot/tree-sitter-awk/archive/a799bc5da7c2a84bc9a06ba5f3540cf1191e4ee3.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-protobuf-19c211a01434d9f03efff99f85e19f967591b175.tar.gz
-SITES.tree-sitter-protobuf-19c211a01434d9f03efff99f85e19f967591b175.tar.gz= \
-               -https://github.com/yusdacra/tree-sitter-protobuf/archive/19c211a01434d9f03efff99f85e19f967591b175.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-elixir-1dabc1c790e07115175057863808085ea60dd08a.tar.gz
-SITES.tree-sitter-elixir-1dabc1c790e07115175057863808085ea60dd08a.tar.gz= \
-               -https://github.com/elixir-lang/tree-sitter-elixir/archive/1dabc1c790e07115175057863808085ea60dd08a.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-fish-04e54ab6585dfd4fee6ddfe5849af56f101b6d4f.tar.gz
-SITES.tree-sitter-fish-04e54ab6585dfd4fee6ddfe5849af56f101b6d4f.tar.gz= \
-               -https://github.com/ram02z/tree-sitter-fish/archive/04e54ab6585dfd4fee6ddfe5849af56f101b6d4f.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-json-65bceef69c3b0f24c0b19ce67d79f57c96e90fcb.tar.gz
-SITES.tree-sitter-json-65bceef69c3b0f24c0b19ce67d79f57c96e90fcb.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-json/archive/65bceef69c3b0f24c0b19ce67d79f57c96e90fcb.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-c-f05e279aedde06a25801c3f2b2cc8ac17fac52ae.tar.gz
-SITES.tree-sitter-c-f05e279aedde06a25801c3f2b2cc8ac17fac52ae.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-c/archive/f05e279aedde06a25801c3f2b2cc8ac17fac52ae.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-cpp-e8dcc9d2b404c542fd236ea5f7208f90be8a6e89.tar.gz
-SITES.tree-sitter-cpp-e8dcc9d2b404c542fd236ea5f7208f90be8a6e89.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-cpp/archive/e8dcc9d2b404c542fd236ea5f7208f90be8a6e89.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-c-sharp-9c494a503c8e2044bfffce57f70b480c01a82f03.tar.gz
-SITES.tree-sitter-c-sharp-9c494a503c8e2044bfffce57f70b480c01a82f03.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-c-sharp/archive/9c494a503c8e2044bfffce57f70b480c01a82f03.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-go-0fa917a7022d1cd2e9b779a6a8fc5dc7fad69c75.tar.gz
-SITES.tree-sitter-go-0fa917a7022d1cd2e9b779a6a8fc5dc7fad69c75.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-go/archive/0fa917a7022d1cd2e9b779a6a8fc5dc7fad69c75.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-go-mod-e8f51f8e4363a3d9a427e8f63f4c1bbc5ef5d8d0.tar.gz
-SITES.tree-sitter-go-mod-e8f51f8e4363a3d9a427e8f63f4c1bbc5ef5d8d0.tar.gz= \
-               -https://github.com/camdencheek/tree-sitter-go-mod/archive/e8f51f8e4363a3d9a427e8f63f4c1bbc5ef5d8d0.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-go-template-395a33e08e69f4155156f0b90138a6c86764c979.tar.gz
-SITES.tree-sitter-go-template-395a33e08e69f4155156f0b90138a6c86764c979.tar.gz= \
-               -https://github.com/dannylongeuay/tree-sitter-go-template/archive/395a33e08e69f4155156f0b90138a6c86764c979.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-go-work-6dd9dd79fb51e9f2abc829d5e97b15015b6a8ae2.tar.gz
-SITES.tree-sitter-go-work-6dd9dd79fb51e9f2abc829d5e97b15015b6a8ae2.tar.gz= \
-               -https://github.com/omertuc/tree-sitter-go-work/archive/6dd9dd79fb51e9f2abc829d5e97b15015b6a8ae2.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-javascript-4a95461c4761c624f2263725aca79eeaefd36cad.tar.gz
-SITES.tree-sitter-javascript-4a95461c4761c624f2263725aca79eeaefd36cad.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-javascript/archive/4a95461c4761c624f2263725aca79eeaefd36cad.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-typescript-3e897ea5925f037cfae2e551f8e6b12eec2a201a.tar.gz
-SITES.tree-sitter-typescript-3e897ea5925f037cfae2e551f8e6b12eec2a201a.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-typescript/archive/3e897ea5925f037cfae2e551f8e6b12eec2a201a.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-css-94e10230939e702b4fa3fa2cb5c3bc7173b95d07.tar.gz
-SITES.tree-sitter-css-94e10230939e702b4fa3fa2cb5c3bc7173b95d07.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-css/archive/94e10230939e702b4fa3fa2cb5c3bc7173b95d07.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-scss-c478c6868648eff49eb04a4df90d703dc45b312a.tar.gz
-SITES.tree-sitter-scss-c478c6868648eff49eb04a4df90d703dc45b312a.tar.gz= \
-               -https://github.com/serenadeai/tree-sitter-scss/archive/c478c6868648eff49eb04a4df90d703dc45b312a.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-html-d93af487cc75120c89257195e6be46c999c6ba18.tar.gz
-SITES.tree-sitter-html-d93af487cc75120c89257195e6be46c999c6ba18.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-html/archive/d93af487cc75120c89257195e6be46c999c6ba18.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-python-de221eccf9a221f5b85474a553474a69b4b5784d.tar.gz
-SITES.tree-sitter-python-de221eccf9a221f5b85474a553474a69b4b5784d.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-python/archive/de221eccf9a221f5b85474a553474a69b4b5784d.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-nickel-9d83db400b6c11260b9106f131f93ddda8131933.tar.gz
-SITES.tree-sitter-nickel-9d83db400b6c11260b9106f131f93ddda8131933.tar.gz= \
-               -https://github.com/nickel-lang/tree-sitter-nickel/archive/9d83db400b6c11260b9106f131f93ddda8131933.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-nix-6b71a810c0acd49b980c50fc79092561f7cee307.tar.gz
-SITES.tree-sitter-nix-6b71a810c0acd49b980c50fc79092561f7cee307.tar.gz= \
-               -https://github.com/cstrahan/tree-sitter-nix/archive/6b71a810c0acd49b980c50fc79092561f7cee307.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-ruby-4c600a463d97e36a0ca5ac57e11f3ac8c297a0fa.tar.gz
-SITES.tree-sitter-ruby-4c600a463d97e36a0ca5ac57e11f3ac8c297a0fa.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-ruby/archive/4c600a463d97e36a0ca5ac57e11f3ac8c297a0fa.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-bash-275effdfc0edce774acf7d481f9ea195c6c403cd.tar.gz
-SITES.tree-sitter-bash-275effdfc0edce774acf7d481f9ea195c6c403cd.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-bash/archive/275effdfc0edce774acf7d481f9ea195c6c403cd.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-php-57f855461aeeca73bd4218754fb26b5ac143f98f.tar.gz
-SITES.tree-sitter-php-57f855461aeeca73bd4218754fb26b5ac143f98f.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-php/archive/57f855461aeeca73bd4218754fb26b5ac143f98f.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-twig-b7444181fb38e603e25ea8fcdac55f9492e49c27.tar.gz
-SITES.tree-sitter-twig-b7444181fb38e603e25ea8fcdac55f9492e49c27.tar.gz= \
-               -https://github.com/eirabben/tree-sitter-twig/archive/b7444181fb38e603e25ea8fcdac55f9492e49c27.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-latex-b3b2cf27f33e71438ebe46934900b1153901c6f2.tar.gz
-SITES.tree-sitter-latex-b3b2cf27f33e71438ebe46934900b1153901c6f2.tar.gz= \
-               -https://github.com/latex-lsp/tree-sitter-latex/archive/b3b2cf27f33e71438ebe46934900b1153901c6f2.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-lean-d98426109258b266e1e92358c5f11716d2e8f638.tar.gz
-SITES.tree-sitter-lean-d98426109258b266e1e92358c5f11716d2e8f638.tar.gz= \
-               -https://github.com/Julian/tree-sitter-lean/archive/d98426109258b266e1e92358c5f11716d2e8f638.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-julia-fc60b7cce87da7a1b7f8cb0f9371c3dc8b684500.tar.gz
-SITES.tree-sitter-julia-fc60b7cce87da7a1b7f8cb0f9371c3dc8b684500.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-julia/archive/fc60b7cce87da7a1b7f8cb0f9371c3dc8b684500.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-java-bd6186c24d5eb13b4623efac9d944dcc095c0dad.tar.gz
-SITES.tree-sitter-java-bd6186c24d5eb13b4623efac9d944dcc095c0dad.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-java/archive/bd6186c24d5eb13b4623efac9d944dcc095c0dad.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-ledger-1f864fb2bf6a87fe1b48545cc6adc6d23090adf7.tar.gz
-SITES.tree-sitter-ledger-1f864fb2bf6a87fe1b48545cc6adc6d23090adf7.tar.gz= \
-               -https://github.com/cbarrete/tree-sitter-ledger/archive/1f864fb2bf6a87fe1b48545cc6adc6d23090adf7.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-beancount-4cbd1f09cd07c1f1fabf867c2cf354f9da53cc4c.tar.gz
-SITES.tree-sitter-beancount-4cbd1f09cd07c1f1fabf867c2cf354f9da53cc4c.tar.gz= \
-               -https://github.com/polarmutex/tree-sitter-beancount/archive/4cbd1f09cd07c1f1fabf867c2cf354f9da53cc4c.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-ocaml-23d419ba45789c5a47d31448061557716b02750a.tar.gz
-SITES.tree-sitter-ocaml-23d419ba45789c5a47d31448061557716b02750a.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-ocaml/archive/23d419ba45789c5a47d31448061557716b02750a.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-lua-6f5d40190ec8a0aa8c8410699353d820f4f7d7a6.tar.gz
-SITES.tree-sitter-lua-6f5d40190ec8a0aa8c8410699353d820f4f7d7a6.tar.gz= \
-               -https://github.com/nvim-treesitter/tree-sitter-lua/archive/6f5d40190ec8a0aa8c8410699353d820f4f7d7a6.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-svelte-349a5984513b4a4a9e143a6e746120c6ff6cf6ed.tar.gz
-SITES.tree-sitter-svelte-349a5984513b4a4a9e143a6e746120c6ff6cf6ed.tar.gz= \
-               -https://github.com/Himujjal/tree-sitter-svelte/archive/349a5984513b4a4a9e143a6e746120c6ff6cf6ed.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-vue-91fe2754796cd8fba5f229505a23fa08f3546c06.tar.gz
-SITES.tree-sitter-vue-91fe2754796cd8fba5f229505a23fa08f3546c06.tar.gz= \
-               -https://github.com/ikatyang/tree-sitter-vue/archive/91fe2754796cd8fba5f229505a23fa08f3546c06.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-yaml-0e36bed171768908f331ff7dff9d956bae016efb.tar.gz
-SITES.tree-sitter-yaml-0e36bed171768908f331ff7dff9d956bae016efb.tar.gz= \
-               -https://github.com/ikatyang/tree-sitter-yaml/archive/0e36bed171768908f331ff7dff9d956bae016efb.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-haskell-b6ec26f181dd059eedd506fa5fbeae1b8e5556c8.tar.gz
-SITES.tree-sitter-haskell-b6ec26f181dd059eedd506fa5fbeae1b8e5556c8.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-haskell/archive/b6ec26f181dd059eedd506fa5fbeae1b8e5556c8.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-zig-93331b8bd8b4ebee2b575490b2758f16ad4e9f30.tar.gz
-SITES.tree-sitter-zig-93331b8bd8b4ebee2b575490b2758f16ad4e9f30.tar.gz= \
-               -https://github.com/maxxnino/tree-sitter-zig/archive/93331b8bd8b4ebee2b575490b2758f16ad4e9f30.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-tsq-48b5e9f82ae0a4727201626f33a17f69f8e0ff86.tar.gz
-SITES.tree-sitter-tsq-48b5e9f82ae0a4727201626f33a17f69f8e0ff86.tar.gz= \
-               -https://github.com/the-mikedavis/tree-sitter-tsq/archive/48b5e9f82ae0a4727201626f33a17f69f8e0ff86.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-cmake-f6616f1e417ee8b62daf251aa1daa5d73781c596.tar.gz
-SITES.tree-sitter-cmake-f6616f1e417ee8b62daf251aa1daa5d73781c596.tar.gz= \
-               -https://github.com/uyha/tree-sitter-cmake/archive/f6616f1e417ee8b62daf251aa1daa5d73781c596.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-make-a4b9187417d6be349ee5fd4b6e77b4172c6827dd.tar.gz
-SITES.tree-sitter-make-a4b9187417d6be349ee5fd4b6e77b4172c6827dd.tar.gz= \
-               -https://github.com/alemuller/tree-sitter-make/archive/a4b9187417d6be349ee5fd4b6e77b4172c6827dd.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-glsl-88408ffc5e27abcffced7010fc77396ae3636d7e.tar.gz
-SITES.tree-sitter-glsl-88408ffc5e27abcffced7010fc77396ae3636d7e.tar.gz= \
-               -https://github.com/theHamsta/tree-sitter-glsl/archive/88408ffc5e27abcffced7010fc77396ae3636d7e.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-perl-0ac2c6da562c7a2c26ed7e8691d4a590f7e8b90a.tar.gz
-SITES.tree-sitter-perl-0ac2c6da562c7a2c26ed7e8691d4a590f7e8b90a.tar.gz= \
-               -https://github.com/ganezdragon/tree-sitter-perl/archive/0ac2c6da562c7a2c26ed7e8691d4a590f7e8b90a.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-comment-5dd3c62f1bbe378b220fe16b317b85247898639e.tar.gz
-SITES.tree-sitter-comment-5dd3c62f1bbe378b220fe16b317b85247898639e.tar.gz= \
-               -https://github.com/stsewd/tree-sitter-comment/archive/5dd3c62f1bbe378b220fe16b317b85247898639e.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-wgsl-f00ff52251edbd58f4d39c9c3204383253032c11.tar.gz
-SITES.tree-sitter-wgsl-f00ff52251edbd58f4d39c9c3204383253032c11.tar.gz= \
-               -https://github.com/szebniok/tree-sitter-wgsl/archive/f00ff52251edbd58f4d39c9c3204383253032c11.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-llvm-3b213925b9c4f42c1acfe2e10bfbb438d9c6834d.tar.gz
-SITES.tree-sitter-llvm-3b213925b9c4f42c1acfe2e10bfbb438d9c6834d.tar.gz= \
-               -https://github.com/benwilliamgraham/tree-sitter-llvm/archive/3b213925b9c4f42c1acfe2e10bfbb438d9c6834d.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-llvm-mir-06fabca19454b2dc00c1b211a7cb7ad0bc2585f1.tar.gz
-SITES.tree-sitter-llvm-mir-06fabca19454b2dc00c1b211a7cb7ad0bc2585f1.tar.gz= \
-               -https://github.com/Flakebi/tree-sitter-llvm-mir/archive/06fabca19454b2dc00c1b211a7cb7ad0bc2585f1.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-tablegen-568dd8a937347175fd58db83d4c4cdaeb6069bd2.tar.gz
-SITES.tree-sitter-tablegen-568dd8a937347175fd58db83d4c4cdaeb6069bd2.tar.gz= \
-               -https://github.com/Flakebi/tree-sitter-tablegen/archive/568dd8a937347175fd58db83d4c4cdaeb6069bd2.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-markdown-142a5b4a1b092b64c9f5db8f11558f9dd4009a1b.tar.gz
-SITES.tree-sitter-markdown-142a5b4a1b092b64c9f5db8f11558f9dd4009a1b.tar.gz= \
-               -https://github.com/MDeiml/tree-sitter-markdown/archive/142a5b4a1b092b64c9f5db8f11558f9dd4009a1b.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-dart-2d7f66651c9319c1a0e4dda226cc2628fbb66528.tar.gz
-SITES.tree-sitter-dart-2d7f66651c9319c1a0e4dda226cc2628fbb66528.tar.gz= \
-               -https://github.com/UserNobody14/tree-sitter-dart/archive/2d7f66651c9319c1a0e4dda226cc2628fbb66528.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-scala-0a3dd53a7fc4b352a538397d054380aaa28be54c.tar.gz
-SITES.tree-sitter-scala-0a3dd53a7fc4b352a538397d054380aaa28be54c.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-scala/archive/0a3dd53a7fc4b352a538397d054380aaa28be54c.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-dockerfile-7af32bc04a66ab196f5b9f92ac471f29372ae2ce.tar.gz
-SITES.tree-sitter-dockerfile-7af32bc04a66ab196f5b9f92ac471f29372ae2ce.tar.gz= \
-               -https://github.com/camdencheek/tree-sitter-dockerfile/archive/7af32bc04a66ab196f5b9f92ac471f29372ae2ce.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-git-commit-318dd72abfaa7b8044c1d1fbeabcd06deaaf038f.tar.gz
-SITES.tree-sitter-git-commit-318dd72abfaa7b8044c1d1fbeabcd06deaaf038f.tar.gz= \
-               -https://github.com/the-mikedavis/tree-sitter-git-commit/archive/318dd72abfaa7b8044c1d1fbeabcd06deaaf038f.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-diff-c12e6ecb54485f764250556ffd7ccb18f8e2942b.tar.gz
-SITES.tree-sitter-diff-c12e6ecb54485f764250556ffd7ccb18f8e2942b.tar.gz= \
-               -https://github.com/the-mikedavis/tree-sitter-git-diff/archive/c12e6ecb54485f764250556ffd7ccb18f8e2942b.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-git-rebase-332dc528f27044bc4427024dbb33e6941fc131f2.tar.gz
-SITES.tree-sitter-git-rebase-332dc528f27044bc4427024dbb33e6941fc131f2.tar.gz= \
-               -https://github.com/the-mikedavis/tree-sitter-git-rebase/archive/332dc528f27044bc4427024dbb33e6941fc131f2.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-regex-e1cfca3c79896ff79842f057ea13e529b66af636.tar.gz
-SITES.tree-sitter-regex-e1cfca3c79896ff79842f057ea13e529b66af636.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-regex/archive/e1cfca3c79896ff79842f057ea13e529b66af636.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-git-config-0e4f0baf90b57e5aeb62dcdbf03062c6315d43ea.tar.gz
-SITES.tree-sitter-git-config-0e4f0baf90b57e5aeb62dcdbf03062c6315d43ea.tar.gz= \
-               -https://github.com/the-mikedavis/tree-sitter-git-config/archive/0e4f0baf90b57e5aeb62dcdbf03062c6315d43ea.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-gitattributes-3dd50808e3096f93dccd5e9dc7dc3dba2eb12dc4.tar.gz
-SITES.tree-sitter-gitattributes-3dd50808e3096f93dccd5e9dc7dc3dba2eb12dc4.tar.gz= \
-               -https://github.com/mtoohey31/tree-sitter-gitattributes/archive/3dd50808e3096f93dccd5e9dc7dc3dba2eb12dc4.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-gitignore-f4685bf11ac466dd278449bcfe5fd014e94aa504.tar.gz
-SITES.tree-sitter-gitignore-f4685bf11ac466dd278449bcfe5fd014e94aa504.tar.gz= \
-               -https://github.com/shunsambongi/tree-sitter-gitignore/archive/f4685bf11ac466dd278449bcfe5fd014e94aa504.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-graphql-5e66e961eee421786bdda8495ed1db045e06b5fe.tar.gz
-SITES.tree-sitter-graphql-5e66e961eee421786bdda8495ed1db045e06b5fe.tar.gz= \
-               -https://github.com/bkegley/tree-sitter-graphql/archive/5e66e961eee421786bdda8495ed1db045e06b5fe.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-elm-df4cb639c01b76bc9ac9cc66788709a6da20002c.tar.gz
-SITES.tree-sitter-elm-df4cb639c01b76bc9ac9cc66788709a6da20002c.tar.gz= \
-               -https://github.com/elm-tooling/tree-sitter-elm/archive/df4cb639c01b76bc9ac9cc66788709a6da20002c.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-iex-39f20bb51f502e32058684e893c0c0b00bb2332c.tar.gz
-SITES.tree-sitter-iex-39f20bb51f502e32058684e893c0c0b00bb2332c.tar.gz= \
-               -https://github.com/elixir-lang/tree-sitter-iex/archive/39f20bb51f502e32058684e893c0c0b00bb2332c.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-rescript-4cd7ba91696886fdaca086fb32b5fd8cc294a129.tar.gz
-SITES.tree-sitter-rescript-4cd7ba91696886fdaca086fb32b5fd8cc294a129.tar.gz= \
-               -https://github.com/jaredramirez/tree-sitter-rescript/archive/4cd7ba91696886fdaca086fb32b5fd8cc294a129.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-erlang-0e7d677d11a7379686c53c616825714ccb728059.tar.gz
-SITES.tree-sitter-erlang-0e7d677d11a7379686c53c616825714ccb728059.tar.gz= \
-               -https://github.com/the-mikedavis/tree-sitter-erlang/archive/0e7d677d11a7379686c53c616825714ccb728059.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-kotlin-a4f71eb9b8c9b19ded3e0e9470be4b1b77c2b569.tar.gz
-SITES.tree-sitter-kotlin-a4f71eb9b8c9b19ded3e0e9470be4b1b77c2b569.tar.gz= \
-               -https://github.com/fwcd/tree-sitter-kotlin/archive/a4f71eb9b8c9b19ded3e0e9470be4b1b77c2b569.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-hcl-3cb7fc28247efbcb2973b97e71c78838ad98a583.tar.gz
-SITES.tree-sitter-hcl-3cb7fc28247efbcb2973b97e71c78838ad98a583.tar.gz= \
-               -https://github.com/MichaHoffmann/tree-sitter-hcl/archive/3cb7fc28247efbcb2973b97e71c78838ad98a583.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-org-698bb1a34331e68f83fc24bdd1b6f97016bb30de.tar.gz
-SITES.tree-sitter-org-698bb1a34331e68f83fc24bdd1b6f97016bb30de.tar.gz= \
-               -https://github.com/milisims/tree-sitter-org/archive/698bb1a34331e68f83fc24bdd1b6f97016bb30de.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-solidity-f3a002274744e859bf64cf3524985f8c31ea84fd.tar.gz
-SITES.tree-sitter-solidity-f3a002274744e859bf64cf3524985f8c31ea84fd.tar.gz= \
-               -https://github.com/slinlee/tree-sitter-solidity/archive/f3a002274744e859bf64cf3524985f8c31ea84fd.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-gleam-d7861b2a4b4d594c58bb4f1be5f1f4ee4c67e5c3.tar.gz
-SITES.tree-sitter-gleam-d7861b2a4b4d594c58bb4f1be5f1f4ee4c67e5c3.tar.gz= \
-               -https://github.com/gleam-lang/tree-sitter-gleam/archive/d7861b2a4b4d594c58bb4f1be5f1f4ee4c67e5c3.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-r-cc04302e1bff76fa02e129f332f44636813b0c3c.tar.gz
-SITES.tree-sitter-r-cc04302e1bff76fa02e129f332f44636813b0c3c.tar.gz= \
-               -https://github.com/r-lib/tree-sitter-r/archive/cc04302e1bff76fa02e129f332f44636813b0c3c.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-swift-77c6312c8438f4dbaa0350cec92b3d6dd3d74a66.tar.gz
-SITES.tree-sitter-swift-77c6312c8438f4dbaa0350cec92b3d6dd3d74a66.tar.gz= \
-               -https://github.com/alex-pinkus/tree-sitter-swift/archive/77c6312c8438f4dbaa0350cec92b3d6dd3d74a66.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-embedded-template-d21df11b0ecc6fd211dbe11278e92ef67bd17e97.tar.gz
-SITES.tree-sitter-embedded-template-d21df11b0ecc6fd211dbe11278e92ef67bd17e97.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-embedded-template/archive/d21df11b0ecc6fd211dbe11278e92ef67bd17e97.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-eex-f742f2fe327463335e8671a87c0b9b396905d1d1.tar.gz
-SITES.tree-sitter-eex-f742f2fe327463335e8671a87c0b9b396905d1d1.tar.gz= \
-               -https://github.com/connorlay/tree-sitter-eex/archive/f742f2fe327463335e8671a87c0b9b396905d1d1.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-heex-961bc4d2937cfd24ceb0a5a6b2da607809f8822e.tar.gz
-SITES.tree-sitter-heex-961bc4d2937cfd24ceb0a5a6b2da607809f8822e.tar.gz= \
-               -https://github.com/phoenixframework/tree-sitter-heex/archive/961bc4d2937cfd24ceb0a5a6b2da607809f8822e.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-sql-0caa7fa2ee00e0b770493a79d4efacc1fc376cc5.tar.gz
-SITES.tree-sitter-sql-0caa7fa2ee00e0b770493a79d4efacc1fc376cc5.tar.gz= \
-               -https://github.com/DerekStride/tree-sitter-sql/archive/0caa7fa2ee00e0b770493a79d4efacc1fc376cc5.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-gdscript-2a6abdaa47fcb91397e09a97c7433fd995ea46c6.tar.gz
-SITES.tree-sitter-gdscript-2a6abdaa47fcb91397e09a97c7433fd995ea46c6.tar.gz= \
-               -https://github.com/PrestonKnopp/tree-sitter-gdscript/archive/2a6abdaa47fcb91397e09a97c7433fd995ea46c6.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-nu-db4e990b78824c8abef3618e0f93b7fe1e8f4c0d.tar.gz
-SITES.tree-sitter-nu-db4e990b78824c8abef3618e0f93b7fe1e8f4c0d.tar.gz= \
-               -https://github.com/LhKipp/tree-sitter-nu/archive/db4e990b78824c8abef3618e0f93b7fe1e8f4c0d.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-vala-c9eea93ba2ec4ec1485392db11945819779745b3.tar.gz
-SITES.tree-sitter-vala-c9eea93ba2ec4ec1485392db11945819779745b3.tar.gz= \
-               -https://github.com/vala-lang/tree-sitter-vala/archive/c9eea93ba2ec4ec1485392db11945819779745b3.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-hare-bc26a6a949f2e0d98b7bfc437d459b250900a165.tar.gz
-SITES.tree-sitter-hare-bc26a6a949f2e0d98b7bfc437d459b250900a165.tar.gz= \
-               -https://git.sr.ht/~ecmma/tree-sitter-hare/archive/bc26a6a949f2e0d98b7bfc437d459b250900a165.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-devicetree-877adbfa0174d25894c40fa75ad52d4515a36368.tar.gz
-SITES.tree-sitter-devicetree-877adbfa0174d25894c40fa75ad52d4515a36368.tar.gz= \
-               -https://github.com/joelspadin/tree-sitter-devicetree/archive/877adbfa0174d25894c40fa75ad52d4515a36368.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-cairo-5155c6eb40db6d437f4fa41b8bcd8890a1c91716.tar.gz
-SITES.tree-sitter-cairo-5155c6eb40db6d437f4fa41b8bcd8890a1c91716.tar.gz= \
-               -https://github.com/archseer/tree-sitter-cairo/archive/5155c6eb40db6d437f4fa41b8bcd8890a1c91716.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-cpon-0d01fcdae5a53191df5b1349f9bce053833270e7.tar.gz
-SITES.tree-sitter-cpon-0d01fcdae5a53191df5b1349f9bce053833270e7.tar.gz= \
-               -https://github.com/fvacek/tree-sitter-cpon/archive/0d01fcdae5a53191df5b1349f9bce053833270e7.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-odin-da885f4a387f169b9b69fe0968259ee257a8f69a.tar.gz
-SITES.tree-sitter-odin-da885f4a387f169b9b69fe0968259ee257a8f69a.tar.gz= \
-               -https://github.com/MineBill/tree-sitter-odin/archive/da885f4a387f169b9b69fe0968259ee257a8f69a.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-meson-feea83be9225842490066522ced2d13eb9cce0bd.tar.gz
-SITES.tree-sitter-meson-feea83be9225842490066522ced2d13eb9cce0bd.tar.gz= \
-               -https://github.com/bearcove/tree-sitter-meson/archive/feea83be9225842490066522ced2d13eb9cce0bd.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-ssh-client-config-769d7a01a2e5493b4bb5a51096c6bf4be130b024.tar.gz
-SITES.tree-sitter-ssh-client-config-769d7a01a2e5493b4bb5a51096c6bf4be130b024.tar.gz= \
-               -https://github.com/metio/tree-sitter-ssh-client-config/archive/769d7a01a2e5493b4bb5a51096c6bf4be130b024.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-scheme-27fb77db05f890c2823b4bd751c6420378df146b.tar.gz
-SITES.tree-sitter-scheme-27fb77db05f890c2823b4bd751c6420378df146b.tar.gz= \
-               -https://github.com/6cdh/tree-sitter-scheme/archive/27fb77db05f890c2823b4bd751c6420378df146b.tar.gz
-
-TREESITTER_DISTFILES+=         vls-3e8124ea4ab80aa08ec77f03df53f577902a0cdd.tar.gz
-SITES.vls-3e8124ea4ab80aa08ec77f03df53f577902a0cdd.tar.gz= \
-               -https://github.com/vlang/vls/archive/3e8124ea4ab80aa08ec77f03df53f577902a0cdd.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-verilog-514d8d70593d29ef3ef667fa6b0e504ae7c977e3.tar.gz
-SITES.tree-sitter-verilog-514d8d70593d29ef3ef667fa6b0e504ae7c977e3.tar.gz= \
-               -https://github.com/andreytkachenko/tree-sitter-verilog/archive/514d8d70593d29ef3ef667fa6b0e504ae7c977e3.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-edoc-1691ec0aa7ad1ed9fa295590545f27e570d12d60.tar.gz
-SITES.tree-sitter-edoc-1691ec0aa7ad1ed9fa295590545f27e570d12d60.tar.gz= \
-               -https://github.com/the-mikedavis/tree-sitter-edoc/archive/1691ec0aa7ad1ed9fa295590545f27e570d12d60.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-jsdoc-189a6a4829beb9cdbe837260653b4a3dfb0cc3db.tar.gz
-SITES.tree-sitter-jsdoc-189a6a4829beb9cdbe837260653b4a3dfb0cc3db.tar.gz= \
-               -https://github.com/tree-sitter/tree-sitter-jsdoc/archive/189a6a4829beb9cdbe837260653b4a3dfb0cc3db.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-openscad-5c3ce93df0ac1da7197cf6ae125aade26d6b8972.tar.gz
-SITES.tree-sitter-openscad-5c3ce93df0ac1da7197cf6ae125aade26d6b8972.tar.gz= \
-               -https://github.com/bollian/tree-sitter-openscad/archive/5c3ce93df0ac1da7197cf6ae125aade26d6b8972.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-prisma-17a59236ac25413b81b1613ea6ba5d8d52d7cd6c.tar.gz
-SITES.tree-sitter-prisma-17a59236ac25413b81b1613ea6ba5d8d52d7cd6c.tar.gz= \
-               -https://github.com/victorhqc/tree-sitter-prisma/archive/17a59236ac25413b81b1613ea6ba5d8d52d7cd6c.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-clojure-e57c569ae332ca365da623712ae1f50f84daeae2.tar.gz
-SITES.tree-sitter-clojure-e57c569ae332ca365da623712ae1f50f84daeae2.tar.gz= \
-               -https://github.com/sogaiu/tree-sitter-clojure/archive/e57c569ae332ca365da623712ae1f50f84daeae2.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-elvish-e50787cadd3bc54f6d9c0704493a79078bb8a4e5.tar.gz
-SITES.tree-sitter-elvish-e50787cadd3bc54f6d9c0704493a79078bb8a4e5.tar.gz= \
-               -https://github.com/ckafi/tree-sitter-elvish/archive/e50787cadd3bc54f6d9c0704493a79078bb8a4e5.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-fortran-f0f2f100952a353e64e26b0fa710b4c296d7af13.tar.gz
-SITES.tree-sitter-fortran-f0f2f100952a353e64e26b0fa710b4c296d7af13.tar.gz= \
-               -https://github.com/stadelmanma/tree-sitter-fortran/archive/f0f2f100952a353e64e26b0fa710b4c296d7af13.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-ungrammar-0113de880a58ea14f2a75802e9b99fcc25003d9c.tar.gz
-SITES.tree-sitter-ungrammar-0113de880a58ea14f2a75802e9b99fcc25003d9c.tar.gz= \
-               -https://github.com/Philipp-M/tree-sitter-ungrammar/archive/0113de880a58ea14f2a75802e9b99fcc25003d9c.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-dot-917230743aa10f45a408fea2ddb54bbbf5fbe7b7.tar.gz
-SITES.tree-sitter-dot-917230743aa10f45a408fea2ddb54bbbf5fbe7b7.tar.gz= \
-               -https://github.com/rydesun/tree-sitter-dot/archive/917230743aa10f45a408fea2ddb54bbbf5fbe7b7.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-cue-61843e3beebf19417e4fede4e8be4df1084317ad.tar.gz
-SITES.tree-sitter-cue-61843e3beebf19417e4fede4e8be4df1084317ad.tar.gz= \
-               -https://github.com/eonpatapon/tree-sitter-cue/archive/61843e3beebf19417e4fede4e8be4df1084317ad.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-slint-0d4dda94f96623302dfc234e06be62a5717f47da.tar.gz
-SITES.tree-sitter-slint-0d4dda94f96623302dfc234e06be62a5717f47da.tar.gz= \
-               -https://github.com/jrmoulton/tree-sitter-slint/archive/0d4dda94f96623302dfc234e06be62a5717f47da.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-task-f2cb435c5dbf3ee19493e224485d977cb2d36d8b.tar.gz
-SITES.tree-sitter-task-f2cb435c5dbf3ee19493e224485d977cb2d36d8b.tar.gz= \
-               -https://github.com/alexanderbrevig/tree-sitter-task/archive/f2cb435c5dbf3ee19493e224485d977cb2d36d8b.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-xit-7d7902456061bc2ad21c64c44054f67b5515734c.tar.gz
-SITES.tree-sitter-xit-7d7902456061bc2ad21c64c44054f67b5515734c.tar.gz= \
-               -https://github.com/synaptiko/tree-sitter-xit/archive/7d7902456061bc2ad21c64c44054f67b5515734c.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-esdl-b840c8a8028127e0a7c6e6c45141adade2bd75cf.tar.gz
-SITES.tree-sitter-esdl-b840c8a8028127e0a7c6e6c45141adade2bd75cf.tar.gz= \
-               -https://github.com/greym0uth/tree-sitter-esdl/archive/b840c8a8028127e0a7c6e6c45141adade2bd75cf.tar.gz
-
-TREESITTER_DISTFILES+=         tree-sitter-pascal-2fd40f477d3e2794af152618ccfac8d92eb72a66.tar.gz
-SITES.tree-sitter-pascal-2fd40f477d3e2794af152618ccfac8d92eb72a66.tar.gz= \
-               -https://github.com/Isopod/tree-sitter-pascal/archive/2fd40f477d3e2794af152618ccfac8d92eb72a66.tar.gz
+TS_FILES+=     tree-sitter-rust 0431a2c60828731f27491ee9fdefe25e250ce9c9 https://github.com/tree-sitter/tree-sitter-rust rust
+TS_FILES+=     tree-sitter-toml 7cff70bbcbbc62001b465603ca1ea88edd668704 https://github.com/ikatyang/tree-sitter-toml toml
+TS_FILES+=     tree-sitter-awk a799bc5da7c2a84bc9a06ba5f3540cf1191e4ee3 https://github.com/Beaglefoot/tree-sitter-awk awk
+TS_FILES+=     tree-sitter-protobuf 19c211a01434d9f03efff99f85e19f967591b175 https://github.com/yusdacra/tree-sitter-protobuf protobuf
+TS_FILES+=     tree-sitter-elixir b20eaa75565243c50be5e35e253d8beb58f45d56 https://github.com/elixir-lang/tree-sitter-elixir elixir
+TS_FILES+=     tree-sitter-fish 84436cf24c2b3176bfbb220922a0fdbd0141e406 https://github.com/ram02z/tree-sitter-fish fish
+TS_FILES+=     tree-sitter-json 65bceef69c3b0f24c0b19ce67d79f57c96e90fcb https://github.com/tree-sitter/tree-sitter-json json
+TS_FILES+=     tree-sitter-c 7175a6dd5fc1cee660dce6fe23f6043d75af424a https://github.com/tree-sitter/tree-sitter-c c
+TS_FILES+=     tree-sitter-cpp d5e90fba898f320db48d81ddedd78d52c67c1fed https://github.com/tree-sitter/tree-sitter-cpp cpp
+TS_FILES+=     tree-sitter-c-sharp 5b60f99545fea00a33bbfae5be956f684c4c69e2 https://github.com/tree-sitter/tree-sitter-c-sharp c-sharp
+TS_FILES+=     tree-sitter-go 05900faa3cdb5d2d8c8bd5e77ee698487e0a8611 https://github.com/tree-sitter/tree-sitter-go go
+TS_FILES+=     tree-sitter-go-mod e8f51f8e4363a3d9a427e8f63f4c1bbc5ef5d8d0 https://github.com/camdencheek/tree-sitter-go-mod gomod
+TS_FILES+=     tree-sitter-go-template 395a33e08e69f4155156f0b90138a6c86764c979 https://github.com/dannylongeuay/tree-sitter-go-template gotmpl
+TS_FILES+=     tree-sitter-go-work 6dd9dd79fb51e9f2abc829d5e97b15015b6a8ae2 https://github.com/omertuc/tree-sitter-go-work gowork
+TS_FILES+=     tree-sitter-javascript 4a95461c4761c624f2263725aca79eeaefd36cad https://github.com/tree-sitter/tree-sitter-javascript javascript
+TS_FILES+=     tree-sitter-typescript 6aac031ad88dd6317f02ac0bb27d099a553a7d8c https://github.com/tree-sitter/tree-sitter-typescript typescript
+TS_FILES+=     tree-sitter-typescript 6aac031ad88dd6317f02ac0bb27d099a553a7d8c https://github.com/tree-sitter/tree-sitter-typescript tsx
+TS_FILES+=     tree-sitter-css 769203d0f9abe1a9a691ac2b9fe4bb4397a73c51 https://github.com/tree-sitter/tree-sitter-css css
+TS_FILES+=     tree-sitter-scss c478c6868648eff49eb04a4df90d703dc45b312a https://github.com/serenadeai/tree-sitter-scss scss
+TS_FILES+=     tree-sitter-html 29f53d8f4f2335e61bf6418ab8958dac3282077a https://github.com/tree-sitter/tree-sitter-html html
+TS_FILES+=     tree-sitter-python de221eccf9a221f5b85474a553474a69b4b5784d https://github.com/tree-sitter/tree-sitter-python python
+TS_FILES+=     tree-sitter-nickel 9d83db400b6c11260b9106f131f93ddda8131933 https://github.com/nickel-lang/tree-sitter-nickel nickel
+TS_FILES+=     tree-sitter-nix 6b71a810c0acd49b980c50fc79092561f7cee307 https://github.com/cstrahan/tree-sitter-nix nix
+TS_FILES+=     tree-sitter-ruby 4c600a463d97e36a0ca5ac57e11f3ac8c297a0fa https://github.com/tree-sitter/tree-sitter-ruby ruby
+TS_FILES+=     tree-sitter-bash 275effdfc0edce774acf7d481f9ea195c6c403cd https://github.com/tree-sitter/tree-sitter-bash bash
+TS_FILES+=     tree-sitter-php 57f855461aeeca73bd4218754fb26b5ac143f98f https://github.com/tree-sitter/tree-sitter-php php
+TS_FILES+=     tree-sitter-twig 807b293fec3fead64f54c64fdf6fb05516c032b9 https://github.com/gbprod/tree-sitter-twig twig
+TS_FILES+=     tree-sitter-latex 8c75e93cd08ccb7ce1ccab22c1fbd6360e3bcea6 https://github.com/latex-lsp/tree-sitter-latex latex
+TS_FILES+=     tree-sitter-lean d98426109258b266e1e92358c5f11716d2e8f638 https://github.com/Julian/tree-sitter-lean lean
+TS_FILES+=     tree-sitter-julia 8fb38abff74652c4faddbf04d2d5bbbc6b4bae25 https://github.com/tree-sitter/tree-sitter-julia julia
+TS_FILES+=     tree-sitter-java 09d650def6cdf7f479f4b78f595e9ef5b58ce31e https://github.com/tree-sitter/tree-sitter-java java
+TS_FILES+=     tree-sitter-ledger 1f864fb2bf6a87fe1b48545cc6adc6d23090adf7 https://github.com/cbarrete/tree-sitter-ledger ledger
+TS_FILES+=     tree-sitter-beancount 4cbd1f09cd07c1f1fabf867c2cf354f9da53cc4c https://github.com/polarmutex/tree-sitter-beancount beancount
+TS_FILES+=     tree-sitter-ocaml 23d419ba45789c5a47d31448061557716b02750a https://github.com/tree-sitter/tree-sitter-ocaml ocaml
+TS_FILES+=     tree-sitter-ocaml 23d419ba45789c5a47d31448061557716b02750a https://github.com/tree-sitter/tree-sitter-ocaml ocaml-interface
+TS_FILES+=     tree-sitter-lua 887dfd4e83c469300c279314ff1619b1d0b85b91 https://github.com/MunifTanjim/tree-sitter-lua lua
+TS_FILES+=     tree-sitter-svelte 349a5984513b4a4a9e143a6e746120c6ff6cf6ed https://github.com/Himujjal/tree-sitter-svelte svelte
+TS_FILES+=     tree-sitter-vue 91fe2754796cd8fba5f229505a23fa08f3546c06 https://github.com/ikatyang/tree-sitter-vue vue
+TS_FILES+=     tree-sitter-yaml 0e36bed171768908f331ff7dff9d956bae016efb https://github.com/ikatyang/tree-sitter-yaml yaml
+TS_FILES+=     tree-sitter-haskell b6ec26f181dd059eedd506fa5fbeae1b8e5556c8 https://github.com/tree-sitter/tree-sitter-haskell haskell
+TS_FILES+=     tree-sitter-zig 8d3224c3bd0890fe08358886ebf54fca2ed448a6 https://github.com/maxxnino/tree-sitter-zig zig
+TS_FILES+=     tree-sitter-tsq 48b5e9f82ae0a4727201626f33a17f69f8e0ff86 https://github.com/the-mikedavis/tree-sitter-tsq tsq
+TS_FILES+=     tree-sitter-cmake 6e51463ef3052dd3b328322c22172eda093727ad https://github.com/uyha/tree-sitter-cmake cmake
+TS_FILES+=     tree-sitter-make a4b9187417d6be349ee5fd4b6e77b4172c6827dd https://github.com/alemuller/tree-sitter-make make
+TS_FILES+=     tree-sitter-glsl 88408ffc5e27abcffced7010fc77396ae3636d7e https://github.com/theHamsta/tree-sitter-glsl glsl
+TS_FILES+=     tree-sitter-perl 0ac2c6da562c7a2c26ed7e8691d4a590f7e8b90a https://github.com/ganezdragon/tree-sitter-perl perl
+TS_FILES+=     tree-sitter-comment 5dd3c62f1bbe378b220fe16b317b85247898639e https://github.com/stsewd/tree-sitter-comment comment
+TS_FILES+=     tree-sitter-wgsl 272e89ef2aeac74178edb9db4a83c1ffef80a463 https://github.com/szebniok/tree-sitter-wgsl wgsl
+TS_FILES+=     tree-sitter-llvm 3b213925b9c4f42c1acfe2e10bfbb438d9c6834d https://github.com/benwilliamgraham/tree-sitter-llvm llvm
+TS_FILES+=     tree-sitter-llvm-mir 06fabca19454b2dc00c1b211a7cb7ad0bc2585f1 https://github.com/Flakebi/tree-sitter-llvm-mir llvm-mir
+TS_FILES+=     tree-sitter-tablegen 568dd8a937347175fd58db83d4c4cdaeb6069bd2 https://github.com/Flakebi/tree-sitter-tablegen tablegen
+TS_FILES+=     tree-sitter-markdown a7de4be29783a6e25f3240c90afea52f2417faa3 https://github.com/MDeiml/tree-sitter-markdown markdown
+TS_FILES+=     tree-sitter-markdown a7de4be29783a6e25f3240c90afea52f2417faa3 https://github.com/MDeiml/tree-sitter-markdown markdown_inline
+TS_FILES+=     tree-sitter-dart 2d7f66651c9319c1a0e4dda226cc2628fbb66528 https://github.com/UserNobody14/tree-sitter-dart dart
+TS_FILES+=     tree-sitter-scala 140c96cf398693189d4e50f76d19ddfcd8a018f8 https://github.com/tree-sitter/tree-sitter-scala scala
+TS_FILES+=     tree-sitter-dockerfile 7af32bc04a66ab196f5b9f92ac471f29372ae2ce https://github.com/camdencheek/tree-sitter-dockerfile dockerfile
+TS_FILES+=     tree-sitter-git-commit 318dd72abfaa7b8044c1d1fbeabcd06deaaf038f https://github.com/the-mikedavis/tree-sitter-git-commit git-commit
+TS_FILES+=     tree-sitter-diff fd74c78fa88a20085dbc7bbeaba066f4d1692b63 https://github.com/the-mikedavis/tree-sitter-diff diff
+TS_FILES+=     tree-sitter-git-rebase 332dc528f27044bc4427024dbb33e6941fc131f2 https://github.com/the-mikedavis/tree-sitter-git-rebase git-rebase
+TS_FILES+=     tree-sitter-regex e1cfca3c79896ff79842f057ea13e529b66af636 https://github.com/tree-sitter/tree-sitter-regex regex
+TS_FILES+=     tree-sitter-git-config 0e4f0baf90b57e5aeb62dcdbf03062c6315d43ea https://github.com/the-mikedavis/tree-sitter-git-config git-config
+TS_FILES+=     tree-sitter-gitattributes 3dd50808e3096f93dccd5e9dc7dc3dba2eb12dc4 https://github.com/mtoohey31/tree-sitter-gitattributes gitattributes
+TS_FILES+=     tree-sitter-gitignore f4685bf11ac466dd278449bcfe5fd014e94aa504 https://github.com/shunsambongi/tree-sitter-gitignore gitignore
+TS_FILES+=     tree-sitter-graphql 5e66e961eee421786bdda8495ed1db045e06b5fe https://github.com/bkegley/tree-sitter-graphql graphql
+TS_FILES+=     tree-sitter-elm df4cb639c01b76bc9ac9cc66788709a6da20002c https://github.com/elm-tooling/tree-sitter-elm elm
+TS_FILES+=     tree-sitter-iex 39f20bb51f502e32058684e893c0c0b00bb2332c https://github.com/elixir-lang/tree-sitter-iex iex
+TS_FILES+=     tree-sitter-rescript 65609807c628477f3b94052e7ef895885ac51c3c https://github.com/jaredramirez/tree-sitter-rescript rescript
+TS_FILES+=     tree-sitter-erlang ce0ed253d72c199ab93caba7542b6f62075339c4 https://github.com/the-mikedavis/tree-sitter-erlang erlang
+TS_FILES+=     tree-sitter-kotlin a4f71eb9b8c9b19ded3e0e9470be4b1b77c2b569 https://github.com/fwcd/tree-sitter-kotlin kotlin
+TS_FILES+=     tree-sitter-hcl 3cb7fc28247efbcb2973b97e71c78838ad98a583 https://github.com/MichaHoffmann/tree-sitter-hcl hcl
+TS_FILES+=     tree-sitter-org 698bb1a34331e68f83fc24bdd1b6f97016bb30de https://github.com/milisims/tree-sitter-org org
+TS_FILES+=     tree-sitter-solidity 9004b86531cb424bd379424cf7266a4585f2af7d https://github.com/JoranHonig/tree-sitter-solidity solidity
+TS_FILES+=     tree-sitter-gleam d6cbdf3477fcdb0b4d811518a356f9b5cd1795ed https://github.com/gleam-lang/tree-sitter-gleam gleam
+TS_FILES+=     tree-sitter-r cc04302e1bff76fa02e129f332f44636813b0c3c https://github.com/r-lib/tree-sitter-r r
+TS_FILES+=     tree-sitter-swift 77c6312c8438f4dbaa0350cec92b3d6dd3d74a66 https://github.com/alex-pinkus/tree-sitter-swift swift
+TS_FILES+=     tree-sitter-embedded-template d21df11b0ecc6fd211dbe11278e92ef67bd17e97 https://github.com/tree-sitter/tree-sitter-embedded-template embedded-template
+TS_FILES+=     tree-sitter-eex f742f2fe327463335e8671a87c0b9b396905d1d1 https://github.com/connorlay/tree-sitter-eex eex
+TS_FILES+=     tree-sitter-heex 2e1348c3cf2c9323e87c2744796cf3f3868aa82a https://github.com/phoenixframework/tree-sitter-heex heex
+TS_FILES+=     tree-sitter-sql 2743c7b5e710e6854d4e8c14c302548b436e2a1f https://github.com/DerekStride/tree-sitter-sql sql
+TS_FILES+=     tree-sitter-gdscript 2a6abdaa47fcb91397e09a97c7433fd995ea46c6 https://github.com/PrestonKnopp/tree-sitter-gdscript gdscript
+TS_FILES+=     tree-sitter-godot-resource b6ef0768711086a86b3297056f9ffb5cc1d77b4a https://github.com/PrestonKnopp/tree-sitter-godot-resource godot-resource
+TS_FILES+=     tree-sitter-nu eb95bdac3abd73ef47e53f19c63e74a31405ebd2 https://github.com/LhKipp/tree-sitter-nu nu
+TS_FILES+=     tree-sitter-vala c9eea93ba2ec4ec1485392db11945819779745b3 https://github.com/vala-lang/tree-sitter-vala vala
+TS_FILES+=     tree-sitter-hare bc26a6a949f2e0d98b7bfc437d459b250900a165 https://git.sr.ht/~ecmma/tree-sitter-hare hare
+TS_FILES+=     tree-sitter-devicetree 877adbfa0174d25894c40fa75ad52d4515a36368 https://github.com/joelspadin/tree-sitter-devicetree devicetree
+TS_FILES+=     tree-sitter-cairo b249662a1eefeb4d71c9529cdd971e74fecc10fe https://github.com/archseer/tree-sitter-cairo cairo
+TS_FILES+=     tree-sitter-cpon 0d01fcdae5a53191df5b1349f9bce053833270e7 https://github.com/fvacek/tree-sitter-cpon cpon
+TS_FILES+=     tree-sitter-odin da885f4a387f169b9b69fe0968259ee257a8f69a https://github.com/MineBill/tree-sitter-odin odin
+TS_FILES+=     tree-sitter-meson 32a83e8f200c347232fa795636cfe60dde22957a https://github.com/staysail/tree-sitter-meson meson
+TS_FILES+=     tree-sitter-ssh-client-config e45c6d5c71657344d4ecaf87dafae7736f776c57 https://github.com/metio/tree-sitter-ssh-client-config sshclientconfig
+TS_FILES+=     tree-sitter-scheme 27fb77db05f890c2823b4bd751c6420378df146b https://github.com/6cdh/tree-sitter-scheme scheme
+TS_FILES+=     vls 3e8124ea4ab80aa08ec77f03df53f577902a0cdd https://github.com/vlang/vls v
+TS_FILES+=     tree-sitter-verilog 514d8d70593d29ef3ef667fa6b0e504ae7c977e3 https://github.com/andreytkachenko/tree-sitter-verilog verilog
+TS_FILES+=     tree-sitter-edoc 74774af7b45dd9cefbf9510328fc6ff2374afc50 https://github.com/the-mikedavis/tree-sitter-edoc edoc
+TS_FILES+=     tree-sitter-jsdoc 189a6a4829beb9cdbe837260653b4a3dfb0cc3db https://github.com/tree-sitter/tree-sitter-jsdoc jsdoc
+TS_FILES+=     tree-sitter-openscad 5c3ce93df0ac1da7197cf6ae125aade26d6b8972 https://github.com/bollian/tree-sitter-openscad openscad
+TS_FILES+=     tree-sitter-prisma 17a59236ac25413b81b1613ea6ba5d8d52d7cd6c https://github.com/victorhqc/tree-sitter-prisma prisma
+TS_FILES+=     tree-sitter-clojure e57c569ae332ca365da623712ae1f50f84daeae2 https://github.com/sogaiu/tree-sitter-clojure clojure
+TS_FILES+=     tree-sitter-elvish e50787cadd3bc54f6d9c0704493a79078bb8a4e5 https://github.com/ckafi/tree-sitter-elvish elvish
+TS_FILES+=     tree-sitter-fortran f0f2f100952a353e64e26b0fa710b4c296d7af13 https://github.com/stadelmanma/tree-sitter-fortran fortran
+TS_FILES+=     tree-sitter-ungrammar 0113de880a58ea14f2a75802e9b99fcc25003d9c https://github.com/Philipp-M/tree-sitter-ungrammar ungrammar
+TS_FILES+=     tree-sitter-dot 917230743aa10f45a408fea2ddb54bbbf5fbe7b7 https://github.com/rydesun/tree-sitter-dot dot
+TS_FILES+=     tree-sitter-cue 61843e3beebf19417e4fede4e8be4df1084317ad https://github.com/eonpatapon/tree-sitter-cue cue
+TS_FILES+=     tree-sitter-slint 0d4dda94f96623302dfc234e06be62a5717f47da https://github.com/jrmoulton/tree-sitter-slint slint
+TS_FILES+=     tree-sitter-task f2cb435c5dbf3ee19493e224485d977cb2d36d8b https://github.com/alexanderbrevig/tree-sitter-task task
+TS_FILES+=     tree-sitter-xit 7d7902456061bc2ad21c64c44054f67b5515734c https://github.com/synaptiko/tree-sitter-xit xit
+TS_FILES+=     tree-sitter-esdl b840c8a8028127e0a7c6e6c45141adade2bd75cf https://github.com/greym0uth/tree-sitter-esdl esdl
+TS_FILES+=     tree-sitter-pascal 2fd40f477d3e2794af152618ccfac8d92eb72a66 https://github.com/Isopod/tree-sitter-pascal pascal
+TS_FILES+=     tree-sitter-sml bd4055d5554614520d4a0706b34dc0c317c6b608 https://github.com/Giorbo/tree-sitter-sml sml
+TS_FILES+=     tree-sitter-jsonnet 0475a5017ad7dc84845d1d33187f2321abcb261d https://github.com/sourcegraph/tree-sitter-jsonnet jsonnet
+TS_FILES+=     tree-sitter-astro 5f5c3e73c45967df9aa42f861fad2d77cd4e0900 https://github.com/virchau13/tree-sitter-astro astro
+TS_FILES+=     tree-sitter-bass 501133e260d768ed4e1fd7374912ed5c86d6fd90 https://github.com/vito/tree-sitter-bass bass
+TS_FILES+=     tree-sitter-wasm 2ca28a9f9d709847bf7a3de0942a84e912f59088 https://github.com/wasm-lsp/tree-sitter-wasm wat
+TS_FILES+=     tree-sitter-wasm 2ca28a9f9d709847bf7a3de0942a84e912f59088 https://github.com/wasm-lsp/tree-sitter-wasm wast
+TS_FILES+=     tree-sitter-d 601c4a1e8310fb2f3c43fa8a923d0d27497f3c04 https://github.com/gdamore/tree-sitter-d d
+TS_FILES+=     tree-sitter-vhs c6d81f34c011c29ee86dd73b45a8ecc9f2e2bdaf https://github.com/charmbracelet/tree-sitter-vhs vhs
+TS_FILES+=     tree-sitter-kdl e1cd292c6d15df6610484e1d4b5c987ecad52373 https://github.com/Unoqwy/tree-sitter-kdl kdl
+TS_FILES+=     tree-sitter-xml 422528a43630db6dcc1e222d1c5ee3babd559473 https://github.com/RenjiSann/tree-sitter-xml xml
+TS_FILES+=     tree-sitter-wit c917790ab9aec50c5fd664cbfad8dd45110cfff3 https://github.com/hh9527/tree-sitter-wit wit
+TS_FILES+=     tree-sitter-env e6c6bb1e7b51d481cba463fe949f083cf22d81f7 https://github.com/seshotake/tree-sitter-env env
+TS_FILES+=     tree-sitter-ini 4d247fb876b4ae6b347687de4a179511bf67fcbc https://github.com/justinmk/tree-sitter-ini ini
+TS_FILES+=     tree-sitter-bicep d8e097fcfa143854861ef737161163a09cc2916b https://github.com/the-mikedavis/tree-sitter-bicep bicep
+TS_FILES+=     tree-sitter-qmljs 0b2b25bcaa7d4925d5f0dda16f6a99c588a437f1 https://github.com/yuja/tree-sitter-qmljs qmljs
+
+DISTFILES?=            ${DEFAULT_DISTFILES}
+.for name rev url path in ${TS_FILES}
+TS_DISTFILE:=          ${name}-${rev}.tar.gz
+TS_DISTFILES:=         ${TS_DISTFILES} ${TS_DISTFILE}
+SITES.${TS_DISTFILE}=  -${url}/archive/${rev}.tar.gz
+.endfor
+DISTFILES:=            ${DISTFILES} ${TS_DISTFILES}

Index: pkgsrc/editors/helix/patches/patch-helix-loader_src_grammar.rs
diff -u pkgsrc/editors/helix/patches/patch-helix-loader_src_grammar.rs:1.2 pkgsrc/editors/helix/patches/patch-helix-loader_src_grammar.rs:1.3
--- pkgsrc/editors/helix/patches/patch-helix-loader_src_grammar.rs:1.2  Fri Nov 11 20:23:39 2022
+++ pkgsrc/editors/helix/patches/patch-helix-loader_src_grammar.rs      Wed Dec  7 17:08:38 2022
@@ -1,10 +1,10 @@
-$NetBSD: patch-helix-loader_src_grammar.rs,v 1.2 2022/11/11 20:23:39 nikita Exp $
+$NetBSD: patch-helix-loader_src_grammar.rs,v 1.3 2022/12/07 17:08:38 jperkin Exp $
 
 Taken from FreeBSD ports, original patch by ashish@.
 
---- helix-loader/src/grammar.rs.orig   2022-09-01 17:07:46 UTC
+--- helix-loader/src/grammar.rs.orig   2022-12-07 02:54:50
 +++ helix-loader/src/grammar.rs
-@@ -89,60 +89,6 @@ pub fn fetch_grammars() -> Result<()> {
+@@ -88,60 +88,6 @@ pub fn fetch_grammars() -> Result<()> {
      let mut grammars = get_grammar_configs()?;
      grammars.retain(|grammar| !matches!(grammar.source, GrammarSource::Local { .. }));
  
@@ -58,7 +58,7 @@ Taken from FreeBSD ports, original patch
 -        let len = errors.len();
 -        println!("{} grammars failed to fetch", len);
 -        for (i, error) in errors.into_iter().enumerate() {
--            println!("\tFailure {}/{}: {}", i, len, error);
+-            println!("\tFailure {}/{}: {}", i + 1, len, error);
 -        }
 -    }
 -
Index: pkgsrc/editors/helix/patches/patch-helix-loader_src_lib.rs
diff -u pkgsrc/editors/helix/patches/patch-helix-loader_src_lib.rs:1.2 pkgsrc/editors/helix/patches/patch-helix-loader_src_lib.rs:1.3
--- pkgsrc/editors/helix/patches/patch-helix-loader_src_lib.rs:1.2      Fri Nov 11 20:23:39 2022
+++ pkgsrc/editors/helix/patches/patch-helix-loader_src_lib.rs  Wed Dec  7 17:08:38 2022
@@ -1,15 +1,15 @@
-$NetBSD: patch-helix-loader_src_lib.rs,v 1.2 2022/11/11 20:23:39 nikita Exp $
+$NetBSD: patch-helix-loader_src_lib.rs,v 1.3 2022/12/07 17:08:38 jperkin Exp $
 
 Taken from FreeBSD ports, original patch by ashish@.
 
---- helix-loader/src/lib.rs.orig       2022-03-30 18:53:07 UTC
+--- helix-loader/src/lib.rs.orig       2022-12-07 02:54:50
 +++ helix-loader/src/lib.rs
-@@ -41,6 +41,8 @@ pub fn runtime_dir() -> std::path::PathBuf {
+@@ -41,6 +41,8 @@ pub fn runtime_dir() -> PathBuf {
          return conf_dir;
      }
  
 +    return std::path::PathBuf::from("%%DATADIR%%").join(RT_DIR);
 +
      // fallback to location of the executable being run
+     // canonicalize the path in case the executable is symlinked
      std::env::current_exe()
-         .ok()

Index: pkgsrc/editors/helix/patches/patch-helix-term_build.rs
diff -u pkgsrc/editors/helix/patches/patch-helix-term_build.rs:1.1 pkgsrc/editors/helix/patches/patch-helix-term_build.rs:1.2
--- pkgsrc/editors/helix/patches/patch-helix-term_build.rs:1.1  Sat Apr  2 09:36:15 2022
+++ pkgsrc/editors/helix/patches/patch-helix-term_build.rs      Wed Dec  7 17:08:38 2022
@@ -1,15 +1,15 @@
-$NetBSD: patch-helix-term_build.rs,v 1.1 2022/04/02 09:36:15 nikita Exp $
+$NetBSD: patch-helix-term_build.rs,v 1.2 2022/12/07 17:08:38 jperkin Exp $
 
 Taken from FreeBSD ports, original patch by ashish@.
 
---- helix-term/build.rs.orig   2022-03-30 19:59:17 UTC
+--- helix-term/build.rs.orig   2022-12-07 02:54:50
 +++ helix-term/build.rs
-@@ -5,12 +5,7 @@ use std::process::Command;
+@@ -5,12 +5,7 @@ fn main() {
  const VERSION: &str = include_str!("../VERSION");
  
  fn main() {
 -    let git_hash = Command::new("git")
--        .args(&["rev-parse", "HEAD"])
+-        .args(["rev-parse", "HEAD"])
 -        .output()
 -        .ok()
 -        .filter(|output| output.status.success())

Added files:

Index: pkgsrc/editors/helix/files/print-depends.awk
diff -u /dev/null pkgsrc/editors/helix/files/print-depends.awk:1.1
--- /dev/null   Wed Dec  7 17:08:38 2022
+++ pkgsrc/editors/helix/files/print-depends.awk        Wed Dec  7 17:08:38 2022
@@ -0,0 +1,45 @@
+BEGIN {
+       print "# $Net" "BSD$"
+       print ""
+}
+
+# Sanitise all lines.
+{
+       # Ensure lines are correctly delimited, e.g. rev="foo" -> rev = "foo"
+       gsub(/=/, " = ")
+
+       # Extract just the string inside quotemarks.
+       for (i = 1; i <= NF; i++) {
+               gsub(/^[^"]*"/, "", $i)
+               gsub(/"[^"]*$/, "", $i)
+       }
+}
+
+# Assumes "name" comes before "source".  This is currently true.
+/^name =/ {
+       path = $3
+}
+
+/^source =/ {
+       for (i = 1; i <= NF; i++) {
+               if ($i == "git" && $(i + 1) == "=") {
+                       url = $(i + 2)
+                       name = substr(url, match(url, /[^\/]*$/))
+               }
+               if ($i == "rev" && $(i + 1) == "=") {
+                       rev = $(i + 2)
+               }
+       }
+       print "TS_FILES+=       " name " " rev " " url " " path
+}
+
+END {
+       print ""
+       print "DISTFILES?=              ${DEFAULT_DISTFILES}"
+       print ".for name rev url path in ${TS_FILES}"
+       print "TS_DISTFILE:=            ${name}-${rev}.tar.gz"
+       print "TS_DISTFILES:=           ${TS_DISTFILES} ${TS_DISTFILE}"
+       print "SITES.${TS_DISTFILE}=    -${url}/archive/${rev}.tar.gz"
+       print ".endfor"
+       print "DISTFILES:=              ${DISTFILES} ${TS_DISTFILES}"
+}



Home | Main Index | Thread Index | Old Index