Skip to content

Bump the patch-updates group with 11 updates#393

Merged
github-actions[bot] merged 1 commit intomasterfrom
dependabot/cargo/patch-updates-31a7095470
Mar 13, 2026
Merged

Bump the patch-updates group with 11 updates#393
github-actions[bot] merged 1 commit intomasterfrom
dependabot/cargo/patch-updates-31a7095470

Conversation

@dependabot
Copy link
Contributor

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

Bumps the patch-updates group with 11 updates:

Package From To
config 0.15.19 0.15.21
openssl 0.10.75 0.10.76
redb 3.1.0 3.1.1
libc 0.2.182 0.2.183
once_cell 1.21.3 1.21.4
openssl-sys 0.9.111 0.9.112
schannel 0.1.28 0.1.29
toml_datetime 0.7.5+spec-1.1.0 1.0.0+spec-1.1.0
unicode-width 0.2.0 0.2.2
zerocopy 0.8.40 0.8.42
zerocopy-derive 0.8.40 0.8.42

Updates config from 0.15.19 to 0.15.21

Changelog

Sourced from config's changelog.

[0.15.21] - 2026-03-12

Compatibility

  • Bump MSRV to 1.85

[0.15.20] - 2026-03-12

Fixes

  • Serialize the full u64 range

Internal

  • (toml) Update to 1.0
Commits

Updates openssl from 0.10.75 to 0.10.76

Release notes

Sourced from openssl's releases.

openssl-v0.10.76

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.75...openssl-v0.10.76

Commits

Updates redb from 3.1.0 to 3.1.1

Release notes

Sourced from redb's releases.

3.1.1

  • Fix panic which could occur when inserting into a table with fixed size keys when debug_assertions are enabled
  • Add additional information to the stats returned by cache_stats()
Changelog

Sourced from redb's changelog.

3.1.1 - 2026-03-08

  • Fix panic which could occur when inserting into a table with fixed size keys when debug_assertions are enabled
  • Add additional information to the stats returned by cache_stats()
Commits
  • fc2b084 Bump version to 3.1.1
  • bcc1fa3 Update changelog
  • eb1c9da Fix panic inserting into fixed size key table
  • c14d694 Bump dependencies: pyo3, rusqlite, rand
  • 2aa4137 Example of derived Key and Value
  • 32f8a13 Fix ambiguity comparing against usize
  • f18fc13 Fix example in README
  • b752306 Add additional information to the cache stats
  • See full diff in compare view

Updates libc from 0.2.182 to 0.2.183

Release notes

Sourced from libc's releases.

0.2.183

Added

  • ESP-IDF: Add SOMAXCONN (#4993)
  • Linux: Add name_to_handle_at and open_by_handle_at (#4988)
  • NetBSD: Add kinfo_file, kinfo_pcb, and related constants (#4985)
  • OpenBSD: Add kinfo_file and related constants (#4991)
  • VxWorks: Add additional structs and defines (#5003)
  • Various: Implement Default for timeval and timespec (#4976)

Fixed

  • Hexagon musl: Enable unstable 64-bit time_t support and musl_v1_2_3 (#4992)
  • Nintendo Switch: Fix target support (#4982)
  • OpenBSD: Wrap an unused field in Padding (#4997)
  • Redox: Change sigaction.sa_flags to c_int (#4986)
  • Redox: Fix blkcnt_t type (#4994)
Changelog

Sourced from libc's changelog.

0.2.183 - 2026-03-08

Added

  • ESP-IDF: Add SOMAXCONN (#4993)
  • Linux: Add name_to_handle_at and open_by_handle_at (#4988)
  • NetBSD: Add kinfo_file, kinfo_pcb, and related constants (#4985)
  • OpenBSD: Add kinfo_file and related constants (#4991)
  • VxWorks: Add additional structs and defines (#5003)
  • Various: Implement Default for timeval and timespec (#4976)

Fixed

  • Hexagon musl: Enable unstable 64-bit time_t support and musl_v1_2_3 (#4992)
  • Nintendo Switch: Fix target support (#4982)
  • OpenBSD: Wrap an unused field in Padding (#4997)
  • Redox: Change sigaction.sa_flags to c_int (#4986)
  • Redox: Fix blkcnt_t type (#4994)
Commits
  • 5660e6f chore: Release libc 0.2.183
  • 8b439b7 allow unused link_cfg feature in rustc-dep-of-std
  • e6436dc Adding structs and defines for vxworks
  • e9cca04 Linux: add name_to_handle_at and open_by_handle_at
  • af8b812 linux: relocate PIDFD definitions to src/new
  • d0bd7e2 NetBSD: add kinfo_file, kinfo_pcb structures and related constants
  • 17f5cce build(deps): bump actions/upload-artifact from 6 to 7
  • 62c89e8 OpenBSD: Wrap an unused field in Padding
  • 82cb126 enable musl32_time64 and musl_v1_2_3 for hexagon
  • e7f9902 redox: fix blkcnt_t type
  • Additional commits viewable in compare view

Updates once_cell from 1.21.3 to 1.21.4

Changelog

Sourced from once_cell's changelog.

1.21.4

  • Fix unsoundness in OnceCell::wait under --features=parking_lot, #295.

    If thread A calls wait, while thread B calls get_or_try_init(f), and, furthermore, f panics, the wait incorrectly returns and thread A observes uninitialized memory.

    Kudos to @​meng-xu-cs for a nice find!

Commits
  • 80fe900 Merge pull request #296 from matklad/matklad/plfix
  • a5e09c9 release 1.21.4
  • 2426d45 Merge pull request #295 from matklad/matklad/plfix
  • a144121 Merge pull request #290 from alexanderkjall/run-tests-with-no-default-features
  • 232a1a4 Merge pull request #292 from phil-opp/doc-fix
  • d31767b fix OnceCell::wait with features=parking_lot
  • 28d29ae Fix: sync::OnceCell::try_insert docs should import sync variant
  • 0f78fb0 make the command 'cargo test --no-default-features' work
  • fda60a6 Merge pull request #287 from AbeZbm/add-tests
  • b5b98c0 Add tests for OnceRef
  • See full diff in compare view

Updates openssl-sys from 0.9.111 to 0.9.112

Release notes

Sourced from openssl-sys's releases.

openssl-sys-v0.9.112

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-sys-v0.9.111...openssl-sys-v0.9.112

Commits

Updates schannel from 0.1.28 to 0.1.29

Commits
  • ff7ffd3 Release v0.1.29
  • 3530cff Merge pull request #121 from nateprewitt/fix_tls13_data_corruption
  • a136697 add test for tls renegotiation (TLS1.3, #121)
  • 6e817db Fix TLS 1.3 data corruption from double-send during renegotiation
  • f75095d Merge pull request #120 from steffengy/feature/119-wrong-ncrypt-check
  • 4269250 Fix condition #119 for CERT_NCRYPT_KEY_SPEC check
  • 6cc5637 Merge pull request #117 from 42triangles/master
  • ed24fe2 Use package.include to only include necessary data for using the crate
  • See full diff in compare view

Updates toml_datetime from 0.7.5+spec-1.1.0 to 1.0.0+spec-1.1.0

Commits
  • 34fe772 chore: Release
  • 7fa8e0d docs: Update changelog
  • 1fb6eba fix(serde)!: Allow borrowed keys and values (#1099)
  • 9fe1ab1 fix(serde)!: Allow borrowed values
  • 5154d6d fix(serde)!: Allow borrowed keys
  • a51f752 test(serde): Verify borrowing
  • dc7d979 feat(datetime)!: Track optional seconds, nanoseconds (#1098)
  • b09eace feat(datetime)!: Track optional seconds, nanoseconds
  • 82396e7 test(dateime): Verify Display
  • a26defd chore: Release
  • Additional commits viewable in compare view

Updates unicode-width from 0.2.0 to 0.2.2

Commits

Updates zerocopy from 0.8.40 to 0.8.42

Release notes

Sourced from zerocopy's releases.

v0.8.41

What's Changed

Full Changelog: google/zerocopy@v0.8.40...v0.8.41

v0.8.41-alpha

What's Changed

Full Changelog: google/zerocopy@v0.8.40...v0.8.41-alpha

Commits

Updates zerocopy-derive from 0.8.40 to 0.8.42

Release notes

Sourced from zerocopy-derive's releases.

v0.8.41

What's Changed

Full Changelog: google/zerocopy@v0.8.40...v0.8.41

v0.8.41-alpha

What's Changed

Full Changelog: google/zerocopy@v0.8.40...v0.8.41-alpha

Commits

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 patch-updates group with 11 updates:

| Package | From | To |
| --- | --- | --- |
| [config](https://github.com/rust-cli/config-rs) | `0.15.19` | `0.15.21` |
| [openssl](https://github.com/rust-openssl/rust-openssl) | `0.10.75` | `0.10.76` |
| [redb](https://github.com/cberner/redb) | `3.1.0` | `3.1.1` |
| [libc](https://github.com/rust-lang/libc) | `0.2.182` | `0.2.183` |
| [once_cell](https://github.com/matklad/once_cell) | `1.21.3` | `1.21.4` |
| [openssl-sys](https://github.com/rust-openssl/rust-openssl) | `0.9.111` | `0.9.112` |
| [schannel](https://github.com/steffengy/schannel-rs) | `0.1.28` | `0.1.29` |
| [toml_datetime](https://github.com/toml-rs/toml) | `0.7.5+spec-1.1.0` | `1.0.0+spec-1.1.0` |
| [unicode-width](https://github.com/unicode-rs/unicode-width) | `0.2.0` | `0.2.2` |
| [zerocopy](https://github.com/google/zerocopy) | `0.8.40` | `0.8.42` |
| [zerocopy-derive](https://github.com/google/zerocopy) | `0.8.40` | `0.8.42` |


Updates `config` from 0.15.19 to 0.15.21
- [Changelog](https://github.com/rust-cli/config-rs/blob/main/CHANGELOG.md)
- [Commits](rust-cli/config-rs@v0.15.19...v0.15.21)

Updates `openssl` from 0.10.75 to 0.10.76
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.75...openssl-v0.10.76)

Updates `redb` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/cberner/redb/releases)
- [Changelog](https://github.com/cberner/redb/blob/master/CHANGELOG.md)
- [Commits](cberner/redb@v3.1.0...v3.1.1)

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

Updates `once_cell` from 1.21.3 to 1.21.4
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.21.3...v1.21.4)

Updates `openssl-sys` from 0.9.111 to 0.9.112
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-sys-v0.9.111...openssl-sys-v0.9.112)

Updates `schannel` from 0.1.28 to 0.1.29
- [Release notes](https://github.com/steffengy/schannel-rs/releases)
- [Commits](steffengy/schannel-rs@v0.1.28...v0.1.29)

Updates `toml_datetime` from 0.7.5+spec-1.1.0 to 1.0.0+spec-1.1.0
- [Commits](toml-rs/toml@toml_datetime-v0.7.5...toml_datetime-v1.0.0)

Updates `unicode-width` from 0.2.0 to 0.2.2
- [Commits](unicode-rs/unicode-width@v0.2.0...v0.2.2)

Updates `zerocopy` from 0.8.40 to 0.8.42
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.40...v0.8.42)

Updates `zerocopy-derive` from 0.8.40 to 0.8.42
- [Release notes](https://github.com/google/zerocopy/releases)
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md)
- [Commits](google/zerocopy@v0.8.40...v0.8.42)

---
updated-dependencies:
- dependency-name: config
  dependency-version: 0.15.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: openssl
  dependency-version: 0.10.76
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: redb
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: libc
  dependency-version: 0.2.183
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: once_cell
  dependency-version: 1.21.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: openssl-sys
  dependency-version: 0.9.112
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: schannel
  dependency-version: 0.1.29
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: toml_datetime
  dependency-version: 1.0.0+spec-1.1.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: patch-updates
- dependency-name: unicode-width
  dependency-version: 0.2.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: zerocopy
  dependency-version: 0.8.42
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: zerocopy-derive
  dependency-version: 0.8.42
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

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 Mar 13, 2026
@github-actions github-actions bot merged commit 8c716cb into master Mar 13, 2026
30 checks passed
@github-actions github-actions bot deleted the dependabot/cargo/patch-updates-31a7095470 branch March 13, 2026 04:32
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