Skip to content

Bump the minor-patch group with 13 updates#69

Merged
eppixx merged 1 commit intomainfrom
dependabot/cargo/minor-patch-e2c5db3676
Apr 13, 2026
Merged

Bump the minor-patch group with 13 updates#69
eppixx merged 1 commit intomainfrom
dependabot/cargo/minor-patch-e2c5db3676

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 13, 2026

Bumps the minor-patch group with 13 updates:

Package From To
tokio 1.51.0 1.51.1
rand 0.10.0 0.10.1
notify-rust 4.13.1 4.14.0
async-signal 0.2.13 0.2.14
cc 1.2.59 1.2.60
fastrand 2.4.0 2.4.1
gif 0.14.1 0.14.2
indexmap 2.13.1 2.14.0
libc 0.2.184 0.2.185
libredox 0.1.15 0.1.16
pkg-config 0.3.32 0.3.33
toml_datetime 1.1.0+spec-1.1.0 1.1.1+spec-1.1.0
toml_edit 0.25.8+spec-1.1.0 0.25.11+spec-1.1.0

Updates tokio from 1.51.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

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)
  • See full diff in compare view

Updates rand from 0.10.0 to 0.10.1

Changelog

Sourced from rand's changelog.

[0.10.1] — 2026-02-11

This release includes a fix for a soundness bug; see #1763.

Changes

  • Document panic behavior of make_rng and add #[track_caller] (#1761)
  • Deprecate feature log (#1763)

#1761: rust-random/rand#1761 #1763: rust-random/rand#1763

Commits

Updates notify-rust from 4.13.1 to 4.14.0

Changelog

Sourced from notify-rust's changelog.

v4.14.0 (2026-04-06)

Features

  • add urgency support for Windows (bb48726)
Commits

Updates async-signal from 0.2.13 to 0.2.14

Release notes

Sourced from async-signal's releases.

v0.2.14

  • Fix build error on haiku. (#59)
Changelog

Sourced from async-signal's changelog.

Version 0.2.14

  • Fix build error on haiku. (#59)
Commits
  • d750e57 Release 0.2.14
  • eb72cfd Fix build error on haiku
  • 1ffadd3 Update signal-hook requirement from 0.3.14 to 0.4.1 (#57)
  • a43dca7 Fix clippy::io_other_error warning
  • c00258a Bump MSRV to 1.85
  • 3fdfdee ci: Use taiki-e/checkout-action action
  • 0f8053d ci: Use cargo-hack's --rust-version flag for msrv check
  • See full diff in compare view

Updates cc from 1.2.59 to 1.2.60

Release notes

Sourced from cc's releases.

cc-v1.2.60

Fixed

  • (ar) suppress warnings from D modifier probe (#1700)
Changelog

Sourced from cc's changelog.

1.2.60 - 2026-04-10

Fixed

  • (ar) suppress warnings from D modifier probe (#1700)
Commits

Updates fastrand from 2.4.0 to 2.4.1

Release notes

Sourced from fastrand's releases.

v2.4.1

  • Fix build failure with js feature. (#125)
Changelog

Sourced from fastrand's changelog.

Version 2.4.1

  • Fix build failure with js feature. (#125)
Commits

Updates gif from 0.14.1 to 0.14.2

Changelog

Sourced from gif's changelog.

v0.14.2

Bugfixes:

  • Correctly recognize extension blocks that only have a terminator block, i.e. are completely empty. This affects Comment as most extensions have some minimum required data (e.g. Application Identifier, …). Such images might have erratically failed to parse, interpreting the following block type as a sub-block length.
Commits
  • a0127e2 Merge pull request #229 from image-rs/release-0.14.2
  • 10793cf Release notes for 0.14.2
  • 5116dcd Merge pull request #228 from davidalecrim1/fix-empty-extension-sub-block
  • f0f52cb Fix empty sub-block terminator in extension parsing
  • See full diff in compare view

Updates indexmap from 2.13.1 to 2.14.0

Changelog

Sourced from indexmap's changelog.

2.14.0 (2026-04-09)

  • MSRV: Rust 1.85.0 or later is now required.
  • Updated the hashbrown dependency to 0.17.
  • Made more map::Slice methods const: new_mut, first_mut, last_mut, split_at_mut, split_at_mut_checked, split_first_mut, split_last_mut
Commits
  • bcd165b Merge pull request #439 from cuviper/release-2.14.0
  • 4ef06a7 Release 2.14.0
  • d21826c Merge pull request #438 from cuviper/hashbrown-0.17
  • 2566bec Upgrade to hashbrown v0.17
  • 4b62776 Merge pull request #437 from cuviper/disjoint-panic
  • 478fba2 Normalize the panic doc of get_disjoint_mut
  • fb6dafd Merge pull request #436 from cuviper/const-slice-mut
  • 5c237a2 Make Slice::{first,last,split_*}_mut methods const
  • 48ff9ce Merge pull request #435 from cuviper/edition-2024
  • 648be98 cargo fmt with edition 2024
  • Additional commits viewable in compare view

Updates libc from 0.2.184 to 0.2.185

Release notes

Sourced from libc's releases.

0.2.185

Added

  • EspIDF: Add espidf_picolibc cfg for picolibc O_* flag values (#5035)
  • Hexagon: add missing constants and fix types for linux-musl (#5042)
  • Redox: Add semaphore functions (#5051)
  • Windows: Add sprintf, snprintf, and the scanf family (#5024)

Fixed

  • Hexagon: Decouple time64 types from musl symbol redirects (#5040)
  • Horizon: Change POLL constants from c_short to c_int (#5045)
Changelog

Sourced from libc's changelog.

0.2.185 - 2026-04-13

Added

  • EspIDF: Add espidf_picolibc cfg for picolibc O_* flag values (#5035)
  • Hexagon: add missing constants and fix types for linux-musl (#5042)
  • Redox: Add semaphore functions (#5051)
  • Windows: Add sprintf, snprintf, and the scanf family (#5024)

Fixed

  • Hexagon: Decouple time64 types from musl symbol redirects (#5040)
  • Horizon: Change POLL constants from c_short to c_int (#5045)
Commits
  • 71d5bfc libc: Release 0.2.185
  • 1027d1c Revert "ci: Pin nightly to 2026-04-01"
  • 0e9c6e5 redox: Add semaphore functions
  • 24ef457 feat: add back support for gnu windows x86 in ci
  • aa75caf horizon: Change POLL constants from c_short to c_int
  • b7eda5a hexagon: add missing constants and fix types for linux-musl
  • d4613f9 newlib/espidf: Add espidf_picolibc cfg for picolibc O_* flag values
  • c89fd76 Fix typo in Padding comments
  • b3264b2 hexagon: decouple time64 types from musl symbol redirects
  • db1ebee ci: Pin nightly to 2026-04-01
  • Additional commits viewable in compare view

Updates libredox from 0.1.15 to 0.1.16

Updates pkg-config from 0.3.32 to 0.3.33

Changelog

Sourced from pkg-config's changelog.

[0.3.33] - 2026-04-12

Changed

  • Error output from pkg-config is included in the message again to help with finding the cause (#187)
Commits

Updates toml_datetime from 1.1.0+spec-1.1.0 to 1.1.1+spec-1.1.0

Commits
  • 9db8aad chore: Release
  • e55a663 docs: Update changelog
  • c11d7d7 Optimisations (#1133)
  • b8578fa perf(edit): Remove redundant Vec collect
  • 8119d76 perf(edit): Reduce allocs in append_values
  • f5ba161 fix(parser): Fix stack overflow in value() on repeated '=' (#1131)
  • a77c61e fix(parser): Stack overflow on repeated '='
  • 64284e5 fix(toml): convert recursion to iteration (#1130)
  • 9361907 fix(toml): Convert recursion to iteration
  • dd40573 feat(edit): Support replace() on ArrayOfTables (#1127)
  • Additional commits viewable in compare view

Updates toml_edit from 0.25.8+spec-1.1.0 to 0.25.11+spec-1.1.0

Commits
  • 45456ab chore: Release
  • b100851 docs: Update changelog
  • 165302f fix(edit): Preserve outer spans for malformed containers (#1141)
  • 1b0bd02 fix(edit): Preserve outer spans for malformed arrays
  • 9eb4dab test(parse): Cover malformed array parse error
  • 57ea4b4 fix(edit): Preserve outer spans for malformed inline tables
  • 92e8001 test(parse): Cover malformed inline table parse error
  • 36e558e docs: Fix spelling mistake
  • a3d0047 chore: Release
  • cc37615 docs: Update changelog
  • 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 minor-patch group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [tokio](https://github.com/tokio-rs/tokio) | `1.51.0` | `1.51.1` |
| [rand](https://github.com/rust-random/rand) | `0.10.0` | `0.10.1` |
| [notify-rust](https://github.com/hoodie/notify-rust) | `4.13.1` | `4.14.0` |
| [async-signal](https://github.com/smol-rs/async-signal) | `0.2.13` | `0.2.14` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.59` | `1.2.60` |
| [fastrand](https://github.com/smol-rs/fastrand) | `2.4.0` | `2.4.1` |
| [gif](https://github.com/image-rs/image-gif) | `0.14.1` | `0.14.2` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.13.1` | `2.14.0` |
| [libc](https://github.com/rust-lang/libc) | `0.2.184` | `0.2.185` |
| libredox | `0.1.15` | `0.1.16` |
| [pkg-config](https://github.com/rust-lang/pkg-config-rs) | `0.3.32` | `0.3.33` |
| [toml_datetime](https://github.com/toml-rs/toml) | `1.1.0+spec-1.1.0` | `1.1.1+spec-1.1.0` |
| [toml_edit](https://github.com/toml-rs/toml) | `0.25.8+spec-1.1.0` | `0.25.11+spec-1.1.0` |


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

Updates `rand` from 0.10.0 to 0.10.1
- [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.0...0.10.1)

Updates `notify-rust` from 4.13.1 to 4.14.0
- [Release notes](https://github.com/hoodie/notify-rust/releases)
- [Changelog](https://github.com/hoodie/notify-rust/blob/main/CHANGELOG.md)
- [Commits](hoodie/notify-rust@v4.13.1...v4.14.0)

Updates `async-signal` from 0.2.13 to 0.2.14
- [Release notes](https://github.com/smol-rs/async-signal/releases)
- [Changelog](https://github.com/smol-rs/async-signal/blob/master/CHANGELOG.md)
- [Commits](smol-rs/async-signal@v0.2.13...v0.2.14)

Updates `cc` from 1.2.59 to 1.2.60
- [Release notes](https://github.com/rust-lang/cc-rs/releases)
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/cc-rs@cc-v1.2.59...cc-v1.2.60)

Updates `fastrand` from 2.4.0 to 2.4.1
- [Release notes](https://github.com/smol-rs/fastrand/releases)
- [Changelog](https://github.com/smol-rs/fastrand/blob/master/CHANGELOG.md)
- [Commits](smol-rs/fastrand@v2.4.0...v2.4.1)

Updates `gif` from 0.14.1 to 0.14.2
- [Changelog](https://github.com/image-rs/image-gif/blob/master/Changes.md)
- [Commits](image-rs/image-gif@v0.14.1...v0.14.2)

Updates `indexmap` from 2.13.1 to 2.14.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/main/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.13.1...2.14.0)

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

Updates `libredox` from 0.1.15 to 0.1.16

Updates `pkg-config` from 0.3.32 to 0.3.33
- [Changelog](https://github.com/rust-lang/pkg-config-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/pkg-config-rs@0.3.32...0.3.33)

Updates `toml_datetime` from 1.1.0+spec-1.1.0 to 1.1.1+spec-1.1.0
- [Commits](toml-rs/toml@toml_datetime-v1.1.0...toml_datetime-v1.1.1)

Updates `toml_edit` from 0.25.8+spec-1.1.0 to 0.25.11+spec-1.1.0
- [Commits](toml-rs/toml@v0.25.8...v0.25.11)

---
updated-dependencies:
- dependency-name: tokio
  dependency-version: 1.51.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: rand
  dependency-version: 0.10.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: notify-rust
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: async-signal
  dependency-version: 0.2.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: cc
  dependency-version: 1.2.60
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: fastrand
  dependency-version: 2.4.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: gif
  dependency-version: 0.14.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: indexmap
  dependency-version: 2.14.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-patch
- dependency-name: libc
  dependency-version: 0.2.185
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: libredox
  dependency-version: 0.1.16
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: pkg-config
  dependency-version: 0.3.33
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: toml_datetime
  dependency-version: 1.1.1+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
- dependency-name: toml_edit
  dependency-version: 0.25.11+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-patch
...

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 13, 2026
@eppixx eppixx merged commit ee397b9 into main Apr 13, 2026
3 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/minor-patch-e2c5db3676 branch April 13, 2026 17:15
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