Skip to content

Bump the rust group across 1 directory with 7 updates#753

Merged
smoelius merged 4 commits intomainfrom
dependabot/cargo/rust-3d924799eb
Apr 12, 2026
Merged

Bump the rust group across 1 directory with 7 updates#753
smoelius merged 4 commits intomainfrom
dependabot/cargo/rust-3d924799eb

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 10, 2026

Bumps the rust group with 7 updates in the / directory:

Package From To
tame-index 0.26.1 0.26.2
libc 0.2.183 0.2.184
ctor 0.6.3 0.9.1
octocrab 0.49.6 0.49.7
similar-asserts 1.7.0 2.0.0
snapbox 1.2.0 1.2.1
tokio 1.50.0 1.51.1

Updates tame-index from 0.26.1 to 0.26.2

Release notes

Sourced from tame-index's releases.

0.26.2

Changed

Changelog

Sourced from tame-index's changelog.

[0.26.2] - 2026-04-10

Changed

Commits

Updates libc from 0.2.183 to 0.2.184

Release notes

Sourced from libc's releases.

0.2.184

MSRV

This release increases the MSRV of libc to 1.65. With this update, you can now always use the core::ffi::c_* types with libc definitions, since libc has been changed to reexport from core rather than redefining them. (This usually worked before but had edge cases.) (#4972)

Added

  • BSD: Add IP_MINTTL to bsd (#5026)
  • Cygwin: Add TIOCM_DSR (#5031)
  • FreeBSD: Added xfile structe and file descriptor types (#5002)
  • Linux: Add CAN netlink bindings (#5011)
  • Linux: Add struct ethhdr (#4239)
  • Linux: Add struct ifinfomsg (#5012)
  • Linux: Define max_align_t for riscv64 (#5029)
  • NetBSD: Add missing CLOCK_ constants (#5020)
  • NuttX: Add _SC_HOST_NAME_MAX (#5004)
  • VxWorks: Add flock and F_*LCK constants (#4043)
  • WASI: Add all _SC_* sysconf constants (#5023)

Deprecated

The remaining fixed-width integer aliases, __uint128_t, __uint128, __int128_t, and __int128, have been deprecated. Use i128 and u128 instead. (#4343)

Fixed

  • breaking Redox: Fix signal action constant types (#5009)
  • EspIDF: Correct the value of DT_* constants (#5034)
  • Redox: Fix locale values and add RTLD_NOLOAD, some TCP constants (#5025)
  • Various: Use Padding::new(<zeroed>) rather than Padding::uninit() (#5036)

Changed

  • potentially breaking Linux: Add new fields to struct ptrace_syscall_info (#4966)
  • Re-export core::ffi integer types rather than redefining (#5015)
  • Redox: Update F_DUPFD, IP, and TCP constants to match relibc (#4990)
Changelog

Sourced from libc's changelog.

0.2.184 - 2026-04-01

MSRV

This release increases the MSRV of libc to 1.65. With this update, you can now always use the core::ffi::c_* types with libc definitions, since libc has been changed to reexport from core rather than redefining them. (This usually worked before but had edge cases.) (#4972)

Added

  • BSD: Add IP_MINTTL to bsd (#5026)
  • Cygwin: Add TIOCM_DSR (#5031)
  • FreeBSD: Added xfile structe and file descriptor types (#5002)
  • Linux: Add CAN netlink bindings (#5011)
  • Linux: Add struct ethhdr (#4239)
  • Linux: Add struct ifinfomsg (#5012)
  • Linux: Define max_align_t for riscv64 (#5029)
  • NetBSD: Add missing CLOCK_ constants (#5020)
  • NuttX: Add _SC_HOST_NAME_MAX (#5004)
  • VxWorks: Add flock and F_*LCK constants (#4043)
  • WASI: Add all _SC_* sysconf constants (#5023)

Deprecated

The remaining fixed-width integer aliases, __uint128_t, __uint128, __int128_t, and __int128, have been deprecated. Use i128 and u128 instead. (#4343)

Fixed

  • breaking Redox: Fix signal action constant types (#5009)
  • EspIDF: Correct the value of DT_* constants (#5034)
  • Redox: Fix locale values and add RTLD_NOLOAD, some TCP constants (#5025)
  • Various: Use Padding::new(<zeroed>) rather than Padding::uninit() (#5036)

Changed

  • potentially breaking Linux: Add new fields to struct ptrace_syscall_info (#4966)
  • Re-export core::ffi integer types rather than redefining (#5015)
  • Redox: Update F_DUPFD, IP, and TCP constants to match relibc (#4990)
Commits
  • b1fd610 chore: Release libc 0.2.184
  • f596819 ci: Don't enforce cargo-semver-checks
  • 4645f60 linux: update ptrace_syscall_info struct
  • 14cbbec types: Remove Padding::uninit
  • b5dcda8 pthread: Use Padding::new(\<zeroed>) rather than Padding::uninit()
  • bbb1c5d types: Add a new function to Padding
  • df06e43 Fix locale values and add RTLD_NOLOAD, some TCP constants
  • 078f5c6 newlib/espidf: Move DT_* to espidf/mod.rs
  • d32b83d Add IP_MINTTL to bsd
  • 939e0ec Define max_align_t for riscv64-linux
  • Additional commits viewable in compare view

Updates ctor from 0.6.3 to 0.9.1

Commits

Updates octocrab from 0.49.6 to 0.49.7

Release notes

Sourced from octocrab's releases.

v0.49.7

Added

  • add missing waiting status to Status enum (#862)

Fixed

  • (repos) create a repo variable doesn't take the name in the path (#865)

Other

  • Extend get_content to allow requesting raw_files (#866)
  • [retry/rate-limits] Add rate limit handling into the retry config (#869)
  • Allow retry policy to run on GET requests (#867)
Changelog

Sourced from octocrab's changelog.

0.49.7 - 2026-03-29

Added

  • add missing waiting status to Status enum (#862)

Fixed

  • (repos) create a repo variable doesn't take the name in the path (#865)

Other

  • Extend get_content to allow requesting raw_files (#866)
  • [retry/rate-limits] Add rate limit handling into the retry config (#869)
  • Allow retry policy to run on GET requests (#867)
Commits
  • ad64898 chore: release v0.49.7 (#863)
  • 127c44a fix(repos): create a repo variable doesn't take the name in the path (#865)
  • d7eb503 Extend get_content to allow requesting raw_files (#866)
  • de5f4a2 [retry/rate-limits] Add rate limit handling into the retry config (#869)
  • 52deb8a Allow retry policy to run on GET requests (#867)
  • af820e7 feat: add missing waiting status to Status enum (#862)
  • See full diff in compare view

Updates similar-asserts from 1.7.0 to 2.0.0

Changelog

Sourced from similar-asserts's changelog.

2.0.0

  • Raised the crate edition to Rust 2024 and updated the MSRV to Rust 1.85.
  • Upgraded the similar dependency to 3.0.0.
  • Modernized CI workflows to current GitHub Actions and added PR runs.
  • Replaced atomic env-var caching with OnceLock.
  • Minor documentation and wording fixes.
Commits
  • 4eff50b chore(release): 2.0.0
  • 265c6e7 chore(ci): add trusted publishing workflow
  • 7700317 chore(rust): modernize toolchain, deps, and CI
  • See full diff in compare view

Updates snapbox from 1.2.0 to 1.2.1

Commits
  • 4bd15a1 chore: Release
  • 8f2d724 docs: Update changelog
  • 5cac956 Merge pull request #438 from epage/bin
  • e0f3374 feat(snapbox): Add Command::cargo_bin
  • 0a950a2 Merge pull request #437 from assert-rs/renovate/j178-prek-action-2.x
  • 0f491c2 chore(deps): Update j178/prek-action action to v2
  • See full diff in compare view

Updates tokio from 1.50.0 to 1.51.1

Release notes

Sourced from tokio's releases.

Tokio v1.51.1

1.51.1 (April 8th, 2026)

Fixed

  • sync: fix semaphore reopens after forget (#8021)
  • net: surface errors from SO_ERROR on recv for UDP sockets on Linux (#8001)

Fixed (unstable)

  • metrics: fix worker_local_schedule_count test (#8008)
  • rt: do not leak fd when cancelling io_uring open operation (#7983)

#7983: tokio-rs/tokio#7983 #8001: tokio-rs/tokio#8001 #8008: tokio-rs/tokio#8008 #8021: tokio-rs/tokio#8021

Tokio v1.51.0

1.51.0 (April 3rd, 2026)

Added

  • net: implement get_peer_cred on Hurd (#7989)
  • runtime: add tokio::runtime::worker_index() (#7921)
  • runtime: add runtime name (#7924)
  • runtime: stabilize LocalRuntime (#7557)
  • wasm: add wasm32-wasip2 networking support (#7933)

Changed

  • runtime: steal tasks from the LIFO slot (#7431)

Fixed

  • docs: do not show "Available on non-loom only." doc label (#7977)
  • macros: improve overall macro hygiene (#7997)
  • sync: fix notify_waiters priority in Notify (#7996)
  • sync: fix panic in Chan::recv_many when called with non-empty vector on closed channel (#7991)

#7431: tokio-rs/tokio#7431 #7557: tokio-rs/tokio#7557 #7921: tokio-rs/tokio#7921 #7924: tokio-rs/tokio#7924 #7933: tokio-rs/tokio#7933 #7977: tokio-rs/tokio#7977 #7989: tokio-rs/tokio#7989 #7991: tokio-rs/tokio#7991 #7996: tokio-rs/tokio#7996 #7997: tokio-rs/tokio#7997

Commits
  • 98df02d chore: prepare Tokio v1.51.1 (#8023)
  • 3ea11e2 sync: fix semaphore reopens after forget (#8021)
  • c791213 rt: do not leak fd when cancelling io_uring open operation (#7983)
  • ad8c59a net: surface errors from SO_ERROR on recv for UDP sockets on Linux (#8001)
  • 654d38b metrics: fix worker_local_schedule_count test (#8008)
  • 857ba80 docs: improve contributing docs on how to specify crates dependency versions ...
  • 95b9342 chore: remove path deps for tokio-macros 2.7.0 (#8007)
  • 0af06b7 chore: prepare Tokio v1.51.0 (#8005)
  • 01a7f1d chore: prepare tokio-macros v2.7.0 (#8004)
  • eeb55c7 runtime: steal tasks from the LIFO slot (#7431)
  • 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 rust group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [tame-index](https://github.com/EmbarkStudios/tame-index) | `0.26.1` | `0.26.2` |
| [libc](https://github.com/rust-lang/libc) | `0.2.183` | `0.2.184` |
| [ctor](https://github.com/mmastrac/rust-ctor) | `0.6.3` | `0.9.1` |
| [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.49.6` | `0.49.7` |
| [similar-asserts](https://github.com/mitsuhiko/similar-asserts) | `1.7.0` | `2.0.0` |
| [snapbox](https://github.com/assert-rs/snapbox) | `1.2.0` | `1.2.1` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.50.0` | `1.51.1` |



Updates `tame-index` from 0.26.1 to 0.26.2
- [Release notes](https://github.com/EmbarkStudios/tame-index/releases)
- [Changelog](https://github.com/EmbarkStudios/tame-index/blob/main/CHANGELOG.md)
- [Commits](EmbarkStudios/tame-index@0.26.1...0.26.2)

Updates `libc` from 0.2.183 to 0.2.184
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.184/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.183...0.2.184)

Updates `ctor` from 0.6.3 to 0.9.1
- [Commits](https://github.com/mmastrac/rust-ctor/commits)

Updates `octocrab` from 0.49.6 to 0.49.7
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases)
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md)
- [Commits](XAMPPRocky/octocrab@v0.49.6...v0.49.7)

Updates `similar-asserts` from 1.7.0 to 2.0.0
- [Changelog](https://github.com/mitsuhiko/similar-asserts/blob/main/CHANGELOG.md)
- [Commits](mitsuhiko/similar-asserts@1.7.0...2.0.0)

Updates `snapbox` from 1.2.0 to 1.2.1
- [Commits](assert-rs/snapbox@snapbox-v1.2.0...snapbox-v1.2.1)

Updates `tokio` from 1.50.0 to 1.51.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.50.0...tokio-1.51.1)

---
updated-dependencies:
- dependency-name: tame-index
  dependency-version: 0.26.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: libc
  dependency-version: 0.2.184
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: ctor
  dependency-version: 0.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: octocrab
  dependency-version: 0.49.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: similar-asserts
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: snapbox
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tokio
  dependency-version: 1.51.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
...

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 Apr 10, 2026
@dependabot dependabot Bot requested a review from smoelius as a code owner April 10, 2026 15:15
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Apr 10, 2026
@smoelius smoelius added this pull request to the merge queue Apr 12, 2026
Merged via the queue into main with commit 6c39fcc Apr 12, 2026
12 checks passed
@smoelius smoelius deleted the dependabot/cargo/rust-3d924799eb branch April 12, 2026 11:52
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