Skip to content

build(deps): bump the cargo-dependencies group across 1 directory with 19 updates#78

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-dependencies-624e2b16d1
Open

build(deps): bump the cargo-dependencies group across 1 directory with 19 updates#78
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-dependencies-624e2b16d1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 16, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo-dependencies group with 18 updates in the / directory:

Package From To
tokenizers 0.22.2 0.23.1
clap 4.6.1 4.6.2
gix 0.81.0 0.85.0
lancedb 0.27.2 0.31.0
arrow-array 57.3.1 58.3.0
arrow-schema 57.3.1 58.3.0
arrow-buffer 57.3.1 58.3.0
anyhow 1.0.102 1.0.103
globset 0.4.18 0.4.19
dirs 5.0.1 6.0.0
fs4 0.12.0 1.1.0
crossbeam-channel 0.5.15 0.5.16
sysinfo 0.33.1 0.38.4
tree-sitter 0.26.9 0.26.11
rand 0.10.1 0.10.2
tantivy 0.24.2 0.26.1
jieba-rs 0.8.1 0.10.2
jsonschema 0.45.1 0.47.0

Updates tokenizers from 0.22.2 to 0.23.1

Release notes

Sourced from tokenizers's releases.

Release v0.23.1

TL;DR

tokenizers 0.23.1 is the first proper stable release in the 0.23 line — 0.23.0 only ever shipped as rc0 because the release pipeline itself was broken (Node side hadn't shipped multi-platform binaries since 2023, Python side was on pyo3 0.27 without free-threaded support). 0.23.1 is the version where everything actually goes out the door together: full Node multi-platform wheels for the first time in years, Python 3.14 (regular and free-threaded 3.14t), full type hints for every Python class, and a stack of measurable perf wins on the BPE / added-vocab hot paths.

There is no functional 0.23.0 published — we tag 0.23.1 directly so users don't accidentally pull a never-shipped version.


🚨 Breaking changes

  • Drop Python 3.9 (#1952) — requires-python = ">=3.10"; 3.9 users stay on 0.22.x.
  • add_tokens normalizes content at insertion (#1995) — re-saved tokenizer.json may differ in the added_tokens block. Existing files load unchanged.
  • Type stubs are precise (#1928, #1997) — methods that returned Any now return real types; mypy --strict may surface previously-hidden errors. Stub layout also moved from tokenizers/<sub>/__init__.pyi to tokenizers/<sub>.pyi. This breaks the surface of some of the processors like RobertaProcessign's __init__ .
  • 3.14t-only: setters/getters return PyResult<T> because of Arc<RwLock<Tokenizer>>; a poisoned lock surfaces as PyException instead of a panic.

⚡ Performance — measured locally on this Mac, not lifted from PRs

Run with cargo bench --bench <name> -- --save-baseline v0_22_2 on v0.22.2, then --baseline v0_22_2 on v0.23.1. Numbers are point-in-time wall clock on a single laptop; relative deltas are what matters, absolute numbers will differ on CI hardware.

Added-vocabulary deserialize — the headline win (#1995, #1999)

bench: improve added_vocab_deserialize to reflect real-world workloads (#2000) is now representative of how transformers actually loads tokenizer.json files. The combined effect of daachorse for the matching automaton plus the normalize-on-insert refactor is enormous on this workload:

benchmark v0.22.2 v0.23.1 change
100k tokens, special, no norm ~410 ms 248 ms −40%
100k tokens, non-special, no norm ~7.1 s 273 ms −96%
100k tokens, special, NFKC ~395 ms 235 ms −40%
100k tokens, non-special, NFKC ~7.4 s 290 ms −96%
400k tokens, special, no norm ~15 s 980 ms −94%

Real-world impact: loading a Llama-3-style tokenizer with a large set of added tokens dropped from "noticeable pause" to "instant".

BPE encode

benchmark v0.22.2 v0.23.1 change
BPE GPT2 encode batch, no cache 530 ms 446 ms −16%
BPE GPT2 encode batch (cached) 690 ms 685 ms noise
BPE GPT2 encode (single) 1.95 s 1.94 s noise
BPE Train (small) 32.6 ms 31.5 ms −3%
BPE Train (big) 1.01 s 988 ms −2%

The BPE per-thread cache PR (#2028) shows much larger wins on highly-parallel workloads (+47–62% at 88+ threads on a server box, per the PR's own measurements on Vera). Single-thread batch numbers above are flat or slightly improved because cache-hit overhead was already low without contention.

Llama-3 encode

... (truncated)

Commits

Updates clap from 4.6.1 to 4.6.2

Release notes

Sourced from clap's releases.

v4.6.2

[4.6.2] - 2026-07-15

Fixes

  • (help) Say alias when there is only one
Changelog

Sourced from clap's changelog.

[4.6.2] - 2026-07-15

Fixes

  • (help) Say alias when there is only one
Commits
  • 0fe0be3 chore: Release
  • 480af9d docs: Update changelog
  • 2b3ddd0 Merge pull request #6340 from liskin/fix-completion-escape
  • 7ffe739 fix(complete): Do not suggest options after "--"
  • d47fc4f test(complete): Options suggested after escape (--)
  • See full diff in compare view

Updates gix from 0.81.0 to 0.85.0

Release notes

Sourced from gix's releases.

gix v0.85.0

Bug Fixes (BREAKING)

  • avoid duplicate network connection when adopting a remote-controlled hash kind. Connections can now be created from detached remotes, internally, which makes them independent of the underlying repository.

    This is breaking as it comes with a cleanup of Connection lifetimes, which will break anyone who stores them in a struct. So hopefully nobody is affected.

  • bound the clone object-hash adoption retry The clone fetch loop adopts the remote's object format and retries when it differs from the freshly initialized local repository. Adoption makes the next iteration's hashes match, but if the reopened repository somehow still disagrees the loop would re-handshake forever. Track whether we already retried and fail with IncompatibleObjectHash on a second mismatch instead. The error variant is introduced here, as this is its only user.

    Also silence clippy::never_loop on default (sha1) features, where the sha256-gated continue is absent and the loop always returns first pass.

New Features (BREAKING)

  • add leaf-only tree-editor removal via Editor::remove_leaf() Motivation comes from gitbutlerapp/gitbutler#14312, where callers had to split tree-entry deletions from additions to avoid accidentally deleting a newly-added subtree after adding A/one and then deleting A.

    Add Editor::remove_leaf() to gix-object and expose it through gix object tree editors and cursors. The new API keeps remove() behavior unchanged, remains tolerant of absent paths, but returns an error when the target entry exists and is a tree.

Bug Fixes

  • adopt the remote's object format when cloning A clone into a freshly initialized repository hit an unimplemented! panic when the remote used sha256, since the local repository defaults to sha1.

    Reconfigure the still-empty local repository to the remote's object format and retry the fetch, matching git's behavior of inheriting the remote's hash on clone.

    Without the sha256 feature gix_hash::Kind has a single variant, so the local and remote hashes can never differ; the mismatch check is compiled out entirely in that case.

  • write fetched remote symrefs as direct refs Previously gix had made-up behaviour to 'improve' on standard Git,

... (truncated)

Commits
  • 6428edc Release gix-date v0.15.5, gix-hashtable v0.15.2, gix-object v0.62.0, gix-attr...
  • 1d301e2 report for June 2026
  • da6b267 Merge pull request #2642 from 10ne1/dev/aratiu/sha256-transport
  • 3927d70 Add journey-tests for SHA-256 clones and ref-lists
  • 9929ece fix!: avoid duplicate network connection when adopting a remote-controlled ha...
  • ed998d1 review
  • f7d6608 Merge pull request #2664 from ameyypawar/docs/2421-index-write-tree-cache
  • 325d2a1 map fetch pack/index checksums to their SHA-256 values
  • a507ee0 Merge pull request #2661 from GitoxideLabs/negative-refspec-parsing
  • 470e689 derive update_refs expected ids from the fixture (hash-aware)
  • Additional commits viewable in compare view

Updates lancedb from 0.27.2 to 0.31.0

Release notes

Sourced from lancedb's releases.

Node/Rust LanceDB v0.31.0

🛠 Breaking Changes

🎉 New Features

🐛 Bug Fixes

... (truncated)

Commits
  • 3f8d768 Bump version: 0.31.0-beta.7 → 0.31.0
  • 7f32a5f Bump version: 0.31.0-beta.6 → 0.31.0-beta.7
  • 1545bd4 Bump version: 0.34.0-beta.7 → 0.34.0
  • 589331d Bump version: 0.34.0-beta.6 → 0.34.0-beta.7
  • 56f8565 feat: update lance dependency to v8.0.0
  • 37466a0 Bump version: 0.31.0-beta.5 → 0.31.0-beta.6
  • bfce8a5 Bump version: 0.34.0-beta.5 → 0.34.0-beta.6
  • a1261e6 fix(python): average MRR reciprocal ranks over all rankings (#3599)
  • 17c4991 docs(python): add missing parameter documentation for when_matched_update_all...
  • d889321 fix!: combine repeated where filters with AND instead of replacing (#3585)
  • Additional commits viewable in compare view

Updates arrow-array from 57.3.1 to 58.3.0

Release notes

Sourced from arrow-array's releases.

arrow 58.3.0

Changelog

58.3.0 (2026-05-07)

Full Changelog

Implemented enhancements:

  • Add DatePart::from_str API #9930 [arrow]
  • should use DictionaryArray::with_values instead of try_new on the dictionary fast path #9889 [arrow]
  • [arrow-string] add concat_elements for BinaryViewArray and FixedSizeBinary #9875 [arrow]
  • Expose eq ignore ascii case from arrow-string #9870 [arrow]
  • Configurable data page v2 compression threshold #9827 [parquet]

Fixed bugs:

  • [arrow-cast] incorrect Time32 -> Time64 conversion #9851 [arrow]
  • Panic when reading malformed compact-Thrift bool fields in Parquet page metadata #9839 [parquet]
  • Parquet DeltaBitPackDecoder::skip could panic on "non-standard" miniblocks #9793 [parquet]

Documentation updates:

  • docs: Add guidance for AI assisted submissions to CONTRIBUTING.md #9892 (etseidl)
  • Update release schedule on README #9881 (alamb)
  • Add more documentation for FixedSizeBinary arrays #9866 [arrow] (alamb)
  • Minor: document why FixedSizeBinary offset is always 0 #9861 [arrow] (alamb)
  • docs: Update contributing guidelines with benchmark results #9782 (alamb)

Closed issues:

... (truncated)

Changelog

Sourced from arrow-array's changelog.

58.3.0 (2026-05-07)

Full Changelog

Implemented enhancements:

  • Add DatePart::from_str API #9930 [arrow]
  • should use DictionaryArray::with_values instead of try_new on the dictionary fast path #9889 [arrow]
  • [arrow-string] add concat_elements for BinaryViewArray and FixedSizeBinary #9875 [arrow]
  • Expose eq ignore ascii case from arrow-string #9870 [arrow]
  • Configurable data page v2 compression threshold #9827 [parquet]

Fixed bugs:

  • [arrow-cast] incorrect Time32 -> Time64 conversion #9851 [arrow]
  • Panic when reading malformed compact-Thrift bool fields in Parquet page metadata #9839 [parquet]
  • Parquet DeltaBitPackDecoder::skip could panic on "non-standard" miniblocks #9793 [parquet]

Documentation updates:

  • docs: Add guidance for AI assisted submissions to CONTRIBUTING.md #9892 (etseidl)
  • Update release schedule on README #9881 (alamb)
  • Add more documentation for FixedSizeBinary arrays #9866 [arrow] (alamb)
  • Minor: document why FixedSizeBinary offset is always 0 #9861 [arrow] (alamb)
  • docs: Update contributing guidelines with benchmark results #9782 (alamb)

Closed issues:

  • GenericByteDictionaryBuilder::with_capacity does not pre-size dedup HashTable #9907 [arrow]
  • [arrow-buffer] Integer overflow in repeat_slice_n_times leads to undefined behavior #9904 [arrow]
  • [arrow-buffer] Integer overflow in BitChunks::new leads to undefined behavior #9903 [arrow]
  • [arrow-row] Integer overflow in Rows::row index handling leads to undefined behavior #9901 [arrow]
  • [arrow-data] Integer overflow in ArrayData validation leads to undefined behavior #9900 [arrow]
  • [arrow-data] Integer overflow in ArrayData::slice leads to undefined behavior #9899 [arrow]
  • [arrow-array] Integer overflow in FixedSizeBinaryArray::value leads to undefined behavior #9898 [arrow]
  • [arrow-buffer] Integer overflow in BufferBuilder::reserve leads to undefined behavior #9897 [arrow]
  • arrow-csv: integer overflow panic in Reader::records::flush #9885 [arrow]
  • Make an API to help with the pattern of 'replaces the values of the REE array' #9854 [arrow]
  • Parquet reader rejects canonical UNKNOWN logical type on BOOLEAN physical columns #9844 [parquet]
  • ColumnIndex length mismatch can cause panic during decoding in Parquet #9832 [parquet]
  • Bug converting json to fixed list of zero size #9780 [arrow]

Merged pull requests:

... (truncated)

Commits
  • 913bab2 Prepare for 58.3.0 release (#9893)
  • 3384f64 chore(deps): bump actions/labeler from 6.0.1 to 6.1.0 (#9932)
  • cc5a256 impl FromStr for DatePart (#9931)
  • 97ff198 feat(arrow-string): concat_elements for view, fixed binary (#9876)
  • ded985c fix(arrow-csv): bound RecordDecoder::flush offset accumulation (#9886)
  • 7f6524d fix(parquet): bound schema num_children before Vec::with_capacity (#9884)
  • 5bf8912 [arrow-string]: add like::eq_ascii_ignore_case kernel (#9871)
  • 8091f3f [arrow-array] Use consistent value_length name in FixedSizeBinaryArray (#9905)
  • 1d89737 fix(parquet): Prevent negative list sizes in Thrift compact protocol parser (...
  • 3790d88 Pre-size dedup HashTable in GenericByteDictionaryBuilder::with_capacity (#9908)
  • Additional commits viewable in compare view

Updates arrow-schema from 57.3.1 to 58.3.0

Release notes

Sourced from arrow-schema's releases.

arrow 58.3.0

Changelog

58.3.0 (2026-05-07)

Full Changelog

Implemented enhancements:

  • Add DatePart::from_str API #9930 [arrow]
  • should use DictionaryArray::with_values instead of try_new on the dictionary fast path #9889 [arrow]
  • [arrow-string] add concat_elements for BinaryViewArray and FixedSizeBinary #9875 [arrow]
  • Expose eq ignore ascii case from arrow-string #9870 [arrow]
  • Configurable data page v2 compression threshold #9827 [parquet]

Fixed bugs:

  • [arrow-cast] incorrect Time32 -> Time64 conversion #9851 [arrow]
  • Panic when reading malformed compact-Thrift bool fields in Parquet page metadata #9839 [parquet]
  • Parquet DeltaBitPackDecoder::skip could panic on "non-standard" miniblocks #9793 [parquet]

Documentation updates:

  • docs: Add guidance for AI assisted submissions to CONTRIBUTING.md #9892 (etseidl)
  • Update release schedule on README #9881 (alamb)
  • Add more documentation for FixedSizeBinary arrays #9866 [arrow] (alamb)
  • Minor: document why FixedSizeBinary offset is always 0 #9861 [arrow] (alamb)
  • docs: Update contributing guidelines with benchmark results #9782 (alamb)

Closed issues:

... (truncated)

Changelog

Sourced from arrow-schema's changelog.

58.3.0 (2026-05-07)

Full Changelog

Implemented enhancements:

  • Add DatePart::from_str API #9930 [arrow]
  • should use DictionaryArray::with_values instead of try_new on the dictionary fast path #9889 [arrow]
  • [arrow-string] add concat_elements for BinaryViewArray and FixedSizeBinary #9875 [arrow]
  • Expose eq ignore ascii case from arrow-string #9870 [arrow]
  • Configurable data page v2 compression threshold #9827 [parquet]

Fixed bugs:

  • [arrow-cast] incorrect Time32 -> Time64 conversion #9851 [arrow]
  • Panic when reading malformed compact-Thrift bool fields in Parquet page metadata #9839 [parquet]
  • Parquet DeltaBitPackDecoder::skip could panic on "non-standard" miniblocks #9793 [parquet]

Documentation updates:

  • docs: Add guidance for AI assisted submissions to CONTRIBUTING.md #9892 (etseidl)
  • Update release schedule on README #9881 (alamb)
  • Add more documentation for FixedSizeBinary arrays #9866 [arrow] (alamb)
  • Minor: document why FixedSizeBinary offset is always 0 #9861 [arrow] (alamb)
  • docs: Update contributing guidelines with benchmark results #9782 (alamb)

Closed issues:

  • GenericByteDictionaryBuilder::with_capacity does not pre-size dedup HashTable #9907 [arrow]
  • [arrow-buffer] Integer overflow in repeat_slice_n_times leads to undefined behavior #9904 [arrow]
  • [arrow-buffer] Integer overflow in BitChunks::new leads to undefined behavior #9903 [arrow]
  • [arrow-row] Integer overflow in Rows::row index handling leads to undefined behavior #9901 [arrow]
  • [arrow-data] Integer overflow in ArrayData validation leads to undefined behavior #9900 [arrow]
  • [arrow-data] Integer overflow in ArrayData::slice leads to undefined behavior #9899 [arrow]
  • [arrow-array] Integer overflow in FixedSizeBinaryArray::value leads to undefined behavior #9898 [arrow]
  • [arrow-buffer] Integer overflow in BufferBuilder::reserve leads to undefined behavior #9897 [arrow]
  • arrow-csv: integer overflow panic in Reader::records::flush #9885 [arrow]
  • Make an API to help with the pattern of 'replaces the values of the REE array' #9854 [arrow]
  • Parquet reader rejects canonical UNKNOWN logical type on BOOLEAN physical columns #9844 [parquet]
  • ColumnIndex length mismatch can cause panic during decoding in Parquet #9832 [parquet]
  • Bug converting json to fixed list of zero size #9780 [arrow]

Merged pull requests:

... (truncated)

Commits
  • 913bab2 Prepare for 58.3.0 release (#9893)
  • 3384f64 chore(deps): bump actions/labeler from 6.0.1 to 6.1.0 (#9932)
  • cc5a256 impl FromStr for DatePart (#9931)
  • 97ff198 feat(arrow-string): concat_elements for view, fixed binary (#9876)
  • ded985c fix(arrow-csv): bound RecordDecoder::flush offset accumulation (#9886)
  • 7f6524d fix(parquet): bound schema num_children before Vec::with_capacity (#9884)
  • 5bf8912 [arrow-string]: add like::eq_ascii_ignore_case kernel (#9871)
  • 8091f3f [arrow-array] Use consistent value_length name in FixedSizeBinaryArray (#9905)
  • 1d89737 fix(parquet): Prevent negative list sizes in Thrift compact protocol parser (...
  • 3790d88 Pre-size dedup HashTable in GenericByteDictionaryBuilder::with_capacity (#9908)
  • Additional commits viewable in compare view

Updates arrow-buffer from 57.3.1 to 58.3.0

Release notes

Sourced from arrow-buffer's releases.

arrow 58.3.0

Changelog

58.3.0 (2026-05-07)

Full Changelog

Implemented enhancements:

  • Add DatePart::from_str API #9930 [arrow]
  • should use DictionaryArray::with_values instead of try_new on the dictionary fast path #9889 [arrow]
  • [arrow-string] add concat_elements for BinaryViewArray and FixedSizeBinary #9875 [arrow]
  • Expose eq ignore ascii case from arrow-string #9870 [arrow]
  • Configurable data page v2 compression threshold #9827 [parquet]

Fixed bugs:

  • [arrow-cast] incorrect Time32 -> Time64 conversion #9851 [arrow]
  • Panic when reading malformed compact-Thrift bool fields in Parquet page metadata #9839 [parquet]
  • Parquet DeltaBitPackDecoder::skip could panic on "non-standard" miniblocks #9793 [parquet]

Documentation updates:

  • docs: Add guidance for AI assisted submissions to CONTRIBUTING.md #9892 (etseidl)
  • Update release schedule on README #9881 (alamb)
  • Add more documentation for FixedSizeBinary arrays #9866 [arrow] (alamb)
  • Minor: document why FixedSizeBinary offset is always 0 #9861 [arrow] (alamb)
  • docs: Update contributing guidelines with benchmark results #9782 (alamb)

Closed issues:

... (truncated)

Changelog

Sourced from arrow-buffer's changelog.

58.3.0 (2026-05-07)

Full Changelog

Implemented enhancements:

  • Add DatePart::from_str API #9930 [arrow]
  • should use DictionaryArray::with_values instead of try_new on the dictionary fast path #9889 [arrow]
  • [arrow-string] add concat_elements for BinaryViewArray and FixedSizeBinary #9875 [arrow]
  • Expose eq ignore ascii case from arrow-string #9870 [arrow]
  • Configurable data page v2 compression threshold #9827 [parquet]

Fixed bugs:

  • [arrow-cast] incorrect Time32 -> Time64 conversion #9851 [arrow]
  • Panic when reading malformed compact-Thrift bool fields in Parquet page metadata #9839 [parquet]
  • Parquet DeltaBitPackDecoder::skip could panic on "non-standard" miniblocks #9793 [parquet]

Documentation updates:

  • docs: Add guidance for AI assisted submissions to CONTRIBUTING.md #9892 (etseidl)
  • Update release schedule on README #9881 (alamb)
  • Add more documentation for FixedSizeBinary arrays #9866 [arrow] (alamb)
  • Minor: document why FixedSizeBinary offset is always 0 #9861 [arrow] (alamb)
  • docs: Update contributing guidelines with benchmark results #9782 (alamb)

Closed issues:

  • GenericByteDictionaryBuilder::with_capacity does not pre-size dedup HashTable

…h 19 updates

Bumps the cargo-dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tokenizers](https://github.com/huggingface/tokenizers) | `0.22.2` | `0.23.1` |
| [clap](https://github.com/clap-rs/clap) | `4.6.1` | `4.6.2` |
| [gix](https://github.com/GitoxideLabs/gitoxide) | `0.81.0` | `0.85.0` |
| [lancedb](https://github.com/lancedb/lancedb) | `0.27.2` | `0.31.0` |
| [arrow-array](https://github.com/apache/arrow-rs) | `57.3.1` | `58.3.0` |
| [arrow-schema](https://github.com/apache/arrow-rs) | `57.3.1` | `58.3.0` |
| [arrow-buffer](https://github.com/apache/arrow-rs) | `57.3.1` | `58.3.0` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.102` | `1.0.103` |
| [globset](https://github.com/BurntSushi/ripgrep) | `0.4.18` | `0.4.19` |
| [dirs](https://github.com/soc/dirs-rs) | `5.0.1` | `6.0.0` |
| [fs4](https://github.com/al8n/fs4) | `0.12.0` | `1.1.0` |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.15` | `0.5.16` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.33.1` | `0.38.4` |
| [tree-sitter](https://github.com/tree-sitter/tree-sitter) | `0.26.9` | `0.26.11` |
| [rand](https://github.com/rust-random/rand) | `0.10.1` | `0.10.2` |
| [tantivy](https://github.com/quickwit-oss/tantivy) | `0.24.2` | `0.26.1` |
| [jieba-rs](https://github.com/messense/jieba-rs) | `0.8.1` | `0.10.2` |
| [jsonschema](https://github.com/Stranger6667/jsonschema) | `0.45.1` | `0.47.0` |



Updates `tokenizers` from 0.22.2 to 0.23.1
- [Release notes](https://github.com/huggingface/tokenizers/releases)
- [Changelog](https://github.com/huggingface/tokenizers/blob/main/RELEASE.md)
- [Commits](huggingface/tokenizers@v0.22.2...v0.23.1)

Updates `clap` from 4.6.1 to 4.6.2
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.6.1...clap_complete-v4.6.2)

Updates `gix` from 0.81.0 to 0.85.0
- [Release notes](https://github.com/GitoxideLabs/gitoxide/releases)
- [Changelog](https://github.com/GitoxideLabs/gitoxide/blob/main/CHANGELOG.md)
- [Commits](GitoxideLabs/gitoxide@gix-v0.81.0...gix-v0.85.0)

Updates `lancedb` from 0.27.2 to 0.31.0
- [Release notes](https://github.com/lancedb/lancedb/releases)
- [Changelog](https://github.com/lancedb/lancedb/blob/main/release_process.md)
- [Commits](lancedb/lancedb@v0.27.2...v0.31.0)

Updates `arrow-array` from 57.3.1 to 58.3.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/58.3.0/CHANGELOG.md)
- [Commits](apache/arrow-rs@57.3.1...58.3.0)

Updates `arrow-schema` from 57.3.1 to 58.3.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/58.3.0/CHANGELOG.md)
- [Commits](apache/arrow-rs@57.3.1...58.3.0)

Updates `arrow-buffer` from 57.3.1 to 58.3.0
- [Release notes](https://github.com/apache/arrow-rs/releases)
- [Changelog](https://github.com/apache/arrow-rs/blob/58.3.0/CHANGELOG.md)
- [Commits](apache/arrow-rs@57.3.1...58.3.0)

Updates `anyhow` from 1.0.102 to 1.0.103
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.102...1.0.103)

Updates `time` from 0.3.49 to 0.3.47
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.49...v0.3.47)

Updates `globset` from 0.4.18 to 0.4.19
- [Release notes](https://github.com/BurntSushi/ripgrep/releases)
- [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md)
- [Commits](BurntSushi/ripgrep@globset-0.4.18...globset-0.4.19)

Updates `dirs` from 5.0.1 to 6.0.0
- [Commits](https://github.com/soc/dirs-rs/commits)

Updates `fs4` from 0.12.0 to 1.1.0
- [Release notes](https://github.com/al8n/fs4/releases)
- [Changelog](https://github.com/al8n/fs4/blob/main/CHANGELOG.md)
- [Commits](https://github.com/al8n/fs4/commits/1.1.0)

Updates `crossbeam-channel` from 0.5.15 to 0.5.16
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/main/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-channel-0.5.15...crossbeam-channel-0.5.16)

Updates `sysinfo` from 0.33.1 to 0.38.4
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md)
- [Commits](GuillaumeGomez/sysinfo@v0.33.1...v0.38.4)

Updates `tree-sitter` from 0.26.9 to 0.26.11
- [Release notes](https://github.com/tree-sitter/tree-sitter/releases)
- [Commits](tree-sitter/tree-sitter@v0.26.9...v0.26.11)

Updates `rand` from 0.10.1 to 0.10.2
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md)
- [Commits](rust-random/rand@0.10.1...0.10.2)

Updates `tantivy` from 0.24.2 to 0.26.1
- [Release notes](https://github.com/quickwit-oss/tantivy/releases)
- [Changelog](https://github.com/quickwit-oss/tantivy/blob/main/CHANGELOG.md)
- [Commits](quickwit-oss/tantivy@0.24.2...0.26.1)

Updates `jieba-rs` from 0.8.1 to 0.10.2
- [Release notes](https://github.com/messense/jieba-rs/releases)
- [Commits](messense/jieba-rs@v0.8.1...v0.10.2)

Updates `jsonschema` from 0.45.1 to 0.47.0
- [Release notes](https://github.com/Stranger6667/jsonschema/releases)
- [Changelog](https://github.com/Stranger6667/jsonschema/blob/master/CHANGELOG.md)
- [Commits](Stranger6667/jsonschema@cli-v0.45.1...ruby-v0.47.0)

---
updated-dependencies:
- dependency-name: tokenizers
  dependency-version: 0.23.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: clap
  dependency-version: 4.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: gix
  dependency-version: 0.85.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: lancedb
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: arrow-array
  dependency-version: 58.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: arrow-schema
  dependency-version: 58.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: arrow-buffer
  dependency-version: 58.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: anyhow
  dependency-version: 1.0.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: time
  dependency-version: 0.3.47
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: globset
  dependency-version: 0.4.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: dirs
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: fs4
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: cargo-dependencies
- dependency-name: crossbeam-channel
  dependency-version: 0.5.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: sysinfo
  dependency-version: 0.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: tree-sitter
  dependency-version: 0.26.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: rand
  dependency-version: 0.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-dependencies
- dependency-name: tantivy
  dependency-version: 0.26.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: jieba-rs
  dependency-version: 0.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: jsonschema
  dependency-version: 0.47.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 16, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants