Skip to content

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

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 25, 2026

Copy link
Copy Markdown
Contributor

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

Package From To
tokenizers 0.22.2 0.23.1
gix 0.81.0 0.85.0
lancedb 0.27.2 0.30.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
time 0.3.49 0.3.51
dirs 5.0.1 6.0.0
fs4 0.12.0 1.1.0
sysinfo 0.33.1 0.38.4
tantivy 0.24.2 0.26.1
jieba-rs 0.8.1 0.9.0
jsonschema 0.45.1 0.46.6

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 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.30.0

Release notes

Sourced from lancedb's releases.

Python LanceDB v0.30.0

🛠 Breaking Changes

🎉 New Features

🐛 Bug Fixes

... (truncated)

Commits
  • a5288de Bump version: 0.30.0-beta.2 → 0.30.0
  • 7a41f4a Bump version: 0.30.0-beta.1 → 0.30.0-beta.2
  • 28fc8f0 Bump version: 0.33.0-beta.2 → 0.33.0
  • 7677a52 Bump version: 0.33.0-beta.1 → 0.33.0-beta.2
  • b6c6455 chore: update lance dependency to v7.0.0
  • a9f49c8 fix: allow appending arrow.json data into lance.json tables (#3429)
  • a7d9f2e fix: remove primary key constraint from MemWAL bucket sharding (#3435)
  • 7dba793 fix(rerankers): inverted scores and incorrect missing-FTS penalty in LinearCo...
  • 87bd669 chore(deps): bump the rust-minor-patch group across 1 directory with 2 update...
  • 15e7580 feat(remote): send read freshness headers for remote table consistency (#3439)
  • 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.

Changelog

59.0.0 (2026-06-04)

Full Changelog

Breaking changes:

Implemented enhancements:

  • Allow casting plain struct to dictionary encoded struct #10038 [arrow]
  • Optimize arrow-flight #10029
  • Align buffers when importing via from_ffi / ArrowArrayStreamReader #10028 [arrow]
  • Switch Parquet LogicalType enum to macro generated version #9995 [parquet]
  • Future proof Parquet Thrift parser #9973 [parquet]
  • Add DatePart 1-indexed variants #9964 [arrow]
  • perf: Rework Parquet Thrift handling of boolean fields #9946 [parquet]
  • Add benchmarks for REE to parquet #9935 [parquet] [arrow]
  • (re) Allow Large FixedSizeBinaryArrays #9906 [arrow]
  • Add a is_normalized flag to DictionaryArray #9841

... (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.

Changelog

59.0.0 (2026-06-04)

Full Changelog

Breaking changes:

Implemented enhancements:

  • Allow casting plain struct to dictionary encoded struct #10038 [arrow]
  • Optimize arrow-flight #10029
  • Align buffers when importing via from_ffi / ArrowArrayStreamReader #10028 [arrow]
  • Switch Parquet LogicalType enum to macro generated version #9995 [parquet]
  • Future proof Parquet Thrift parser #9973 [parquet]
  • Add DatePart 1-indexed variants #9964 [arrow]
  • perf: Rework Parquet Thrift handling of boolean fields #9946 [parquet]
  • Add benchmarks for REE to parquet #9935 [parquet] [arrow]
  • (re) Allow Large FixedSizeBinaryArrays #9906 [arrow]
  • Add a is_normalized flag to DictionaryArray #9841

... (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.

Changelog

59.0.0 (2026-06-04)

Full Changelog

Breaking changes:

Implemented enhancements:

  • Allow casting plain struct to dictionary encoded struct #10038 [arrow]
  • Optimize arrow-flight #10029
  • Align buffers when importing via from_ffi / ArrowArrayStreamReader #10028 [arrow]
  • Switch Parquet LogicalType enum to macro generated version #9995 [parquet]
  • Future proof Parquet Thrift parser #9973 [parquet]
  • Add DatePart 1-indexed variants #9964 [arrow]
  • perf: Rework Parquet Thrift handling of boolean fields #9946 [parquet]
  • Add benchmarks for REE to parquet #9935 [parquet] [arrow]
  • (re) Allow Large FixedSizeBinaryArrays #9906 [arrow]
  • Add a is_normalized flag to DictionaryArray #9841

... (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 time from 0.3.49 to 0.3.51

Release notes

Sourced from time's releases.

v0.3.51

See the changelog for details.

Changelog

Sourced from time's changelog.

0.3.51 [2026-06-22]

Fixed

  • time compiles with macros enabled. This version is otherwise identical to v0.3.50.

0.3.50 [2026-06-22]

Added

  • Timestamp type

Fixed

  • [year] in a runtime-parsed version 3 format description when the large-dates feature is not enabled now succeeds. This previously failed due to a missing #[cfg].

Performance

  • Further gains when parsing with the non-deprecated parts of the RFC 2822 well-known format
  • Gains when formatting with the ISO 8601 well-known format
  • Date arithmetic is improved in common situations
Commits
  • 4ae4926 v0.3.51 release
  • 88eece3 v0.3.50 release
  • e1aa9ed Remove unused imports
  • 6f64473 Add regression test for issue 773
  • 9f8d7da Improve performance of ISO 8601 formatting
  • 356975c Share parsing components with different versions
  • 2850178 Improve RFC 2822 fast path
  • 1f6fa79 Add #[inline] to trivial method
  • 7e4fd30 Add fast path for Date arithmetic
  • a928f2d Avoid range error when not using large-datesDescription has been truncated

…h 13 updates

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

| Package | From | To |
| --- | --- | --- |
| [tokenizers](https://github.com/huggingface/tokenizers) | `0.22.2` | `0.23.1` |
| [gix](https://github.com/GitoxideLabs/gitoxide) | `0.81.0` | `0.85.0` |
| [lancedb](https://github.com/lancedb/lancedb) | `0.27.2` | `0.30.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` |
| [time](https://github.com/time-rs/time) | `0.3.49` | `0.3.51` |
| [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` |
| [sysinfo](https://github.com/GuillaumeGomez/sysinfo) | `0.33.1` | `0.38.4` |
| [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.9.0` |
| [jsonschema](https://github.com/Stranger6667/jsonschema) | `0.45.1` | `0.46.6` |



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 `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.30.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.30.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/main/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/main/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/main/CHANGELOG.md)
- [Commits](apache/arrow-rs@57.3.1...58.3.0)

Updates `time` from 0.3.49 to 0.3.51
- [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.51)

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 `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 `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.9.0
- [Release notes](https://github.com/messense/jieba-rs/releases)
- [Commits](messense/jieba-rs@v0.8.1...v0.9.0)

Updates `jsonschema` from 0.45.1 to 0.46.6
- [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...cli-v0.46.6)

---
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: 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.30.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: time
  dependency-version: 0.3.51
  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: sysinfo
  dependency-version: 0.38.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-dependencies
- dependency-name: jsonschema
  dependency-version: 0.46.6
  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 Jun 25, 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