Skip to content

Bump the cargo group across 1 directory with 2 updates#113

Merged
gjtorikian merged 4 commits intomainfrom
dependabot/cargo/cargo-21fde7aa03
May 1, 2026
Merged

Bump the cargo group across 1 directory with 2 updates#113
gjtorikian merged 4 commits intomainfrom
dependabot/cargo/cargo-21fde7aa03

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Bumps the cargo group with 2 updates in the / directory: rb-sys and tiktoken-rs.

Updates rb-sys from 0.9.124 to 0.9.127

Release notes

Sourced from rb-sys's releases.

v0.9.127

What's Changed

New Contributors

Full Changelog: oxidize-rb/rb-sys@v0.9.126...v0.9.127

v0.9.126

What's Changed

Full Changelog: oxidize-rb/rb-sys@v0.9.125...v0.9.126

v0.9.125

What's Changed

New Contributors

Full Changelog: oxidize-rb/rb-sys@v0.9.124...v0.9.125

Commits
  • 7243059 Bump to v0.9.127
  • 14f072d test(stable-api): add comprehensive edge-case parity tests (#737)
  • b5ecb64 perf(stable-api): inline num2long/num2ulong Bignum fast path for MRI (#736)
  • 670ca77 perf(stable-api): inline rhash_size for MRI stable versions (#735)
  • e346649 perf(stable-api): inline dbl2num flonum encode for MRI stable versions (#734)
  • 27271f8 perf(stable-api): inline num2dbl T_FLOAT fast path for MRI (#733)
  • 20c1b10 chore(deps): bump rake-compiler-dock to 1.12.0 (#732)
  • b4c88e2 Merge pull request #731 from bangseongbeom/cargo-metadata-utf-8
  • 1f67a5c Ensure that Cargo metadata is UTF-8 encoded
  • d03ff5c perf(stable-api): inline encoding_get for MRI stable versions (#730)
  • Additional commits viewable in compare view

Updates tiktoken-rs from 0.9.1 to 0.11.0

Release notes

Sourced from tiktoken-rs's releases.

v0.11.0

What's Changed

Features

Other Changes

Full Changelog: zurawiki/tiktoken-rs@v0.10.0...v0.11.0

v0.10.0

What's Changed

Features

Bug Fixes

Dependencies

Other Changes

Full Changelog: zurawiki/tiktoken-rs@v0.9.1...v0.10.0

Commits
  • b115197 Return Option from get_context_size, improve error messages, bump to 0.11.0 (...
  • 5561968 Add gpt-5.2/5.3/codex model support (#159)
  • 7555342 Add generic token type APIs (FromRank trait) (#157)
  • 415f11e Use GitHub auto-generated release notes (#158)
  • 5f47553 Add gpt-5.4 support, fix o1-mini/chatgpt-4o/gpt-4.5 context sizes, DRY ft: pr...
  • 4194603 Auto-label Renovate PRs as dependencies
  • 1a9799a Release v0.10.0 (#155)
  • 5ed40bb Add count-only token counting APIs (#153)
  • 7944675 Rename misleading API functions, deprecate old names (#154)
  • 54eca48 Bump async-openai to 0.34, add tool_calls/refusal token counting, update docs...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the cargo group with 2 updates in the / directory: [rb-sys](https://github.com/oxidize-rb/rb-sys) and [tiktoken-rs](https://github.com/zurawiki/tiktoken-rs).


Updates `rb-sys` from 0.9.124 to 0.9.127
- [Release notes](https://github.com/oxidize-rb/rb-sys/releases)
- [Commits](oxidize-rb/rb-sys@v0.9.124...v0.9.127)

Updates `tiktoken-rs` from 0.9.1 to 0.11.0
- [Release notes](https://github.com/zurawiki/tiktoken-rs/releases)
- [Commits](zurawiki/tiktoken-rs@v0.9.1...v0.11.0)

---
updated-dependencies:
- dependency-name: rb-sys
  dependency-version: 0.9.127
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: tiktoken-rs
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
...

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 May 1, 2026
gjtorikian and others added 3 commits May 1, 2026 09:35
The cargo group bump pulled in tiktoken-rs 0.11.0, whose Cargo metadata
output trips the YAML-based parser in rb_sys 0.9.124 (`metadata must be
a Hash`). rb_sys 0.9.125+ switched to JSON.parse and 0.9.127 ensures
UTF-8 encoding, fixing `rake build` on CI.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
tiktoken-rs 0.10 changed CoreBPE::decode to take &[Rank] instead of
Vec<Rank> (zurawiki/tiktoken-rs#146). Pass a slice borrow instead of
moving the Vec out via mem::take.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Mirror tiktoken-rs 0.11.0 additions (zurawiki/tiktoken-rs#156, #159):
exact `gpt-5`, prefix `gpt-5.` (covers gpt-5.4, gpt-5.4-mini,
gpt-5.3-codex, gpt-5.2-pro, etc.), and `codex-mini` prefix
(codex-mini, codex-mini-latest). All resolve to o200k_base.

Context-size fixes upstream (o1-mini/chatgpt-4o/gpt-4.5) don't apply
here — this gem only exposes encoding lookup, not get_context_size.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@gjtorikian gjtorikian merged commit dea2dda into main May 1, 2026
10 of 12 checks passed
@dependabot dependabot Bot deleted the dependabot/cargo/cargo-21fde7aa03 branch May 1, 2026 13:53
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.

1 participant