Skip to content

chore(deps): bump the validation-deps group across 1 directory with 19 updates#247

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/validation/local_ping_pong_openssl/validation-deps-bcade53935
Open

chore(deps): bump the validation-deps group across 1 directory with 19 updates#247
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/cargo/validation/local_ping_pong_openssl/validation-deps-bcade53935

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the validation-deps group with 17 updates in the /validation/local_ping_pong_openssl directory:

Package From To
rustls 0.23.40 0.23.41
openssl 0.10.80 0.10.81
aead 0.6.0 0.6.1
cc 1.2.63 1.2.65
crypto-bigint 0.7.3 0.7.5
curve25519-dalek 5.0.0-rc.0 5.0.0-rc.1
ecdsa 0.17.0-rc.19 0.17.0-rc.20
ed25519-dalek 3.0.0-rc.0 3.0.0-rc.1
log 0.4.32 0.4.33
memchr 2.8.1 2.8.2
primefield 0.14.0-rc.11 0.14.0-rc.12
primeorder 0.14.0-rc.11 0.14.0-rc.12
quote 1.0.45 1.0.46
syn 2.0.117 2.0.118
wasip2 1.0.3+wasi-0.2.9 1.0.4+wasi-0.2.12
x25519-dalek 3.0.0-rc.0 3.0.0-rc.1
zeroize 1.8.2 1.9.0

Updates rustls from 0.23.40 to 0.23.41

Commits
  • 642a103 ci: drop Taplo job
  • 752c144 Drop nightly clippy tests
  • 8d8611a Fix new clippy::useless-borrows-in-formatting
  • ebf3297 Fix new clippy::manual_clear
  • 46808e7 ci: sync cargo-check-external-types nightly
  • 041a8d2 Cargo deny: allow RUSTSEC-2026-0173
  • 62e220e Take semver-compatible dependency updates
  • 3c14696 Upgrade to hickory-resolver 0.26
  • 848a2cc connect-tests: delete ech.rs
  • 5ce9cac Bump version to 0.23.41
  • Additional commits viewable in compare view

Updates openssl from 0.10.80 to 0.10.81

Release notes

Sourced from openssl's releases.

openssl-v0.10.81

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.80...openssl-v0.10.81

Commits
  • db9c9e2 Release openssl 0.10.81 and openssl-sys 0.9.117 (#2655)
  • 3a7fb56 Bump actions/checkout from 6.0.2 to 6.0.3 (#2653)
  • d059c43 Fix verify_mode() panic on unmodeled verify mode bits (#2651)
  • 8b1519e Deprecate Asn1StringRef::as_utf8 in favor of a NUL-safe to_string (#2652)
  • d5713d6 add mldsa.h to the boringssl bindgen (#2650)
  • 9fac317 Merge pull request #2538 from ocdlroux/feat/crl-full
  • 4dae20b x509: adding minimal support for X509CrlBuilder
  • 47f7777 Add brainpoolP224r1 and brainpoolP224t1 NID constants (#2642)
  • 659da17 Bump aws-ls-sys to 0.41 (#2640)
  • See full diff in compare view

Updates aead from 0.6.0 to 0.6.1

Commits

Updates cc from 1.2.63 to 1.2.65

Release notes

Sourced from cc's releases.

cc-v1.2.65

Other

  • Regenerate target info (#1763)

cc-v1.2.64

Other

  • Add more bare-metal 32-bit Arm support (#1753)
  • Remove unnecessary clone (#1748)
  • Add default compiler prefixes for thumbv7a/thumbv7r/thumbv8r bare-metal targets (#1742)
Changelog

Sourced from cc's changelog.

1.2.65 - 2026-06-19

Other

  • Regenerate target info (#1763)

1.2.64 - 2026-06-12

Other

  • Add more bare-metal 32-bit Arm support (#1753)
  • Remove unnecessary clone (#1748)
  • Add default compiler prefixes for thumbv7a/thumbv7r/thumbv8r bare-metal targets (#1742)
Commits

Updates crypto-bigint from 0.7.3 to 0.7.5

Changelog

Sourced from crypto-bigint's changelog.

0.7.5 (2026-06-22)

Added

  • BoxedUint::{from_be_slice_truncated, from_le_slice_truncated} (#1266)
  • Encoding::{from_bytes, to_bytes} (#1297)
  • Uint::{from_be_slice_truncated, from_le_slice_truncated} (#1299)
  • Limb::{from_*_bytes, from_*_slice_truncated, to_*_bytes} as const fns (#1300)
  • Encoding::{from_be_slice_truncated, from_le_slice_truncated} trait methods (#1301)
  • ArrayEncoding::{from_byte_array, to_byte_array} (#1302)

Fixed

  • Preserve NonZero and Odd invariants in Zeroize impls (#1287)
  • bitlen performance (#1298)
  • floor_sqrt regression (#1304)
  • Truncated Karatsuba carry (#1305)

#1266: RustCrypto/crypto-bigint#1266 #1287: RustCrypto/crypto-bigint#1287 #1297: RustCrypto/crypto-bigint#1297 #1298: RustCrypto/crypto-bigint#1298 #1299: RustCrypto/crypto-bigint#1299 #1300: RustCrypto/crypto-bigint#1300 #1301: RustCrypto/crypto-bigint#1301 #1302: RustCrypto/crypto-bigint#1302 #1304: RustCrypto/crypto-bigint#1304 #1305: RustCrypto/crypto-bigint#1305

0.7.4 (2026-06-16) [YANKED]

NOTE: yanked due to Karatsuba carry truncation bug fixed in #1305.

Added

  • Extend LCM support to BoxedUint and add a supporting trait (#1240)
  • Impl ConstantTimeGreater/ConstantTimeLess for ConstMontyForm (#1247)
  • Support for exact division (#1256, #1271)
  • Implement Encoding trait for Int serde support (#1286)
  • ByteOrder enum (#1293)

Changed

  • Update multiword division to better match GMP paper (#1244)
  • Faster checked_sqrt/floor_sqrt (#1258)

Fixed

  • Panic in Int::div_rem_unsigned with large divisors (#1250)
  • Avoid incorrect creation of an Odd<BoxedUint> in invert_mod2k (#1257)
  • BoxedUint bitor-assign with wider rhs (#1270)
  • Enforce UintRef slice length checks in release builds (#1272)
  • Clamp Montgomery exponent bit bounds (#1273)
  • Reject oversized fixed-width DER integers (#1274)
  • Update CtEq impl for MontyParams to match PartialEq (#1278)
  • Canonicalize modulus-one residues (#1280)

... (truncated)

Commits

Updates curve25519-dalek from 5.0.0-rc.0 to 5.0.0-rc.1

Commits

Updates ecdsa from 0.17.0-rc.19 to 0.17.0-rc.20

Commits
  • 344087d ecdsa v0.17.0-rc.20 (#1383)
  • 58ce150 ml-dsa: fix hardcoded MlDsa44 in Wycheproof verification tests (#1382)
  • a08448e ecdsa: remove signature verification from recovery (#1381)
  • 116295f ecdsa: move low-S normalization check into verify_prehashed (#1379)
  • 9cabd27 build(deps): bump zeroize from 1.8.2 to 1.9.0 (#1378)
  • 503829e build(deps): bump crypto-primes from 0.7.1 to 0.7.2 (#1377)
  • b508c09 build(deps): bump crypto-primes from 0.7.0 to 0.7.1 (#1375)
  • See full diff in compare view

Updates ed25519-dalek from 3.0.0-rc.0 to 3.0.0-rc.1

Commits

Updates elliptic-curve from 0.14.0-rc.34 to 0.14.0-rc.35

Commits

Updates log from 0.4.32 to 0.4.33

Changelog

Sourced from log's changelog.

[0.4.33] - 2026-06-20

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.32...0.4.33

Commits
  • f405739 Merge pull request #734 from rust-lang/cargo/0.4.33
  • 6a24abf prepare for 0.4.33 release
  • 87e0621 Merge pull request #732 from matteo-zeggiotti-ok/fix-key-comparison
  • a9b5711 Review: fallback to the &str hash
  • cc89cc6 Review: fixed other comparisons
  • 920e7dc Review: fixed comparison on MaybeStaticStr
  • 0d71d3c Fixed key comparison
  • See full diff in compare view

Updates memchr from 2.8.1 to 2.8.2

Commits
  • a61ac1a 2.8.2
  • a08bf90 arch: fix undefined behavior in lower level (but public) APIs
  • b41293b rebar: update memchr to latest
  • 87467c9 impl: remove unnecessary clones in into_owned impls
  • See full diff in compare view

Updates openssl-sys from 0.9.116 to 0.9.117

Release notes

Sourced from openssl-sys's releases.

openssl-sys-v0.9.117

What's Changed

New Contributors

Full Changelog: rust-openssl/rust-openssl@openssl-sys-v0.9.116...openssl-sys-v0.9.117

Commits
  • db9c9e2 Release openssl 0.10.81 and openssl-sys 0.9.117 (#2655)
  • 3a7fb56 Bump actions/checkout from 6.0.2 to 6.0.3 (#2653)
  • d059c43 Fix verify_mode() panic on unmodeled verify mode bits (#2651)
  • 8b1519e Deprecate Asn1StringRef::as_utf8 in favor of a NUL-safe to_string (#2652)
  • d5713d6 add mldsa.h to the boringssl bindgen (#2650)
  • 9fac317 Merge pull request #2538 from ocdlroux/feat/crl-full
  • 4dae20b x509: adding minimal support for X509CrlBuilder
  • 47f7777 Add brainpoolP224r1 and brainpoolP224t1 NID constants (#2642)
  • 659da17 Bump aws-ls-sys to 0.41 (#2640)
  • See full diff in compare view

Updates primefield from 0.14.0-rc.11 to 0.14.0-rc.12

Commits

Updates primeorder from 0.14.0-rc.11 to 0.14.0-rc.12

Commits

Updates quote from 1.0.45 to 1.0.46

Release notes

Sourced from quote's releases.

1.0.46

Commits
  • bc4caf2 Release 1.0.46
  • dc0e304 Format with rustfmt
  • 712114c Drop arrow from syntax of quote_spanned_with_expanded_span
  • f93ab8a Eliminate quote_spanned_with_expanded_span_as_expr macro
  • 1ff3951 Eliminate __quote_spanned macro
  • 64e913a Unify quote_spanned definitions
  • 2978e8b Wrap comment to 80 columns
  • 7f311a0 Fix PR 329 fat arrow spacing
  • 313a8a2 Remove unneeded get_span from PR 329
  • 0b33821 Merge pull request #329 from Noratrieb/avoid-repeat-expand
  • Additional commits viewable in compare view

Updates syn from 2.0.117 to 2.0.118

Release notes

Sourced from syn's releases.

2.0.118

  • Documentation improvements
Commits
  • f033ef1 Release 2.0.118
  • 45f65f7 Wrap long lint attributes
  • b3f9bf8 Mirror PR 1975 from readme to crate-level rustdoc
  • 97dc117 Wrap PR 1975 to 80 columns
  • 0085b7a Lint repr_transparent_non_zst_fields has been removed
  • 9fc1c9d Update test suite to nightly-2026-06-12
  • 504bcc7 Update test suite to nightly-2026-06-09
  • 353d20b Update test suite to nightly-2026-06-06
  • f257a16 Update test suite to nightly-2026-05-25
  • b706e6e Update test suite to nightly-2026-05-13
  • Additional commits viewable in compare view

Updates wasip2 from 1.0.3+wasi-0.2.9 to 1.0.4+wasi-0.2.12

Commits

Updates x25519-dalek from 3.0.0-rc.0 to 3.0.0-rc.1

Commits

Updates zeroize from 1.8.2 to 1.9.0

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

…9 updates

Bumps the validation-deps group with 17 updates in the /validation/local_ping_pong_openssl directory:

| Package | From | To |
| --- | --- | --- |
| [rustls](https://github.com/rustls/rustls) | `0.23.40` | `0.23.41` |
| [openssl](https://github.com/rust-openssl/rust-openssl) | `0.10.80` | `0.10.81` |
| [aead](https://github.com/RustCrypto/traits) | `0.6.0` | `0.6.1` |
| [cc](https://github.com/rust-lang/cc-rs) | `1.2.63` | `1.2.65` |
| [crypto-bigint](https://github.com/RustCrypto/crypto-bigint) | `0.7.3` | `0.7.5` |
| [curve25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) | `5.0.0-rc.0` | `5.0.0-rc.1` |
| [ecdsa](https://github.com/RustCrypto/signatures) | `0.17.0-rc.19` | `0.17.0-rc.20` |
| [ed25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) | `3.0.0-rc.0` | `3.0.0-rc.1` |
| [log](https://github.com/rust-lang/log) | `0.4.32` | `0.4.33` |
| [memchr](https://github.com/BurntSushi/memchr) | `2.8.1` | `2.8.2` |
| [primefield](https://github.com/RustCrypto/elliptic-curves) | `0.14.0-rc.11` | `0.14.0-rc.12` |
| [primeorder](https://github.com/RustCrypto/elliptic-curves) | `0.14.0-rc.11` | `0.14.0-rc.12` |
| [quote](https://github.com/dtolnay/quote) | `1.0.45` | `1.0.46` |
| [syn](https://github.com/dtolnay/syn) | `2.0.117` | `2.0.118` |
| [wasip2](https://github.com/bytecodealliance/wasi-rs) | `1.0.3+wasi-0.2.9` | `1.0.4+wasi-0.2.12` |
| [x25519-dalek](https://github.com/dalek-cryptography/curve25519-dalek) | `3.0.0-rc.0` | `3.0.0-rc.1` |
| [zeroize](https://github.com/RustCrypto/utils) | `1.8.2` | `1.9.0` |



Updates `rustls` from 0.23.40 to 0.23.41
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.40...v/0.23.41)

Updates `openssl` from 0.10.80 to 0.10.81
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-v0.10.80...openssl-v0.10.81)

Updates `aead` from 0.6.0 to 0.6.1
- [Commits](RustCrypto/traits@aead-v0.6.0...aead-v0.6.1)

Updates `cc` from 1.2.63 to 1.2.65
- [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.63...cc-v1.2.65)

Updates `crypto-bigint` from 0.7.3 to 0.7.5
- [Changelog](https://github.com/RustCrypto/crypto-bigint/blob/master/CHANGELOG.md)
- [Commits](RustCrypto/crypto-bigint@v0.7.3...v0.7.5)

Updates `curve25519-dalek` from 5.0.0-rc.0 to 5.0.0-rc.1
- [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases)
- [Commits](https://github.com/dalek-cryptography/curve25519-dalek/commits)

Updates `ecdsa` from 0.17.0-rc.19 to 0.17.0-rc.20
- [Commits](RustCrypto/signatures@ecdsa/v0.17.0-rc.19...ecdsa/v0.17.0-rc.20)

Updates `ed25519-dalek` from 3.0.0-rc.0 to 3.0.0-rc.1
- [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases)
- [Commits](https://github.com/dalek-cryptography/curve25519-dalek/commits)

Updates `elliptic-curve` from 0.14.0-rc.34 to 0.14.0-rc.35
- [Commits](RustCrypto/traits@elliptic-curve-v0.14.0-rc.34...elliptic-curve-v0.14.0-rc.35)

Updates `log` from 0.4.32 to 0.4.33
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.32...0.4.33)

Updates `memchr` from 2.8.1 to 2.8.2
- [Commits](BurntSushi/memchr@2.8.1...2.8.2)

Updates `openssl-sys` from 0.9.116 to 0.9.117
- [Release notes](https://github.com/rust-openssl/rust-openssl/releases)
- [Commits](rust-openssl/rust-openssl@openssl-sys-v0.9.116...openssl-sys-v0.9.117)

Updates `primefield` from 0.14.0-rc.11 to 0.14.0-rc.12
- [Commits](RustCrypto/elliptic-curves@primefield/v0.14.0-rc.11...primefield/v0.14.0-rc.12)

Updates `primeorder` from 0.14.0-rc.11 to 0.14.0-rc.12
- [Commits](RustCrypto/elliptic-curves@primeorder/v0.14.0-rc.11...primeorder/v0.14.0-rc.12)

Updates `quote` from 1.0.45 to 1.0.46
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.45...1.0.46)

Updates `syn` from 2.0.117 to 2.0.118
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.117...2.0.118)

Updates `wasip2` from 1.0.3+wasi-0.2.9 to 1.0.4+wasi-0.2.12
- [Commits](bytecodealliance/wasi-rs@wasip2-1.0.3...wasip2-1.0.4)

Updates `x25519-dalek` from 3.0.0-rc.0 to 3.0.0-rc.1
- [Release notes](https://github.com/dalek-cryptography/curve25519-dalek/releases)
- [Commits](https://github.com/dalek-cryptography/curve25519-dalek/commits)

Updates `zeroize` from 1.8.2 to 1.9.0
- [Commits](RustCrypto/utils@zeroize-v1.8.2...zeroize-v1.9.0)

---
updated-dependencies:
- dependency-name: rustls
  dependency-version: 0.23.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: openssl
  dependency-version: 0.10.81
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: aead
  dependency-version: 0.6.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: cc
  dependency-version: 1.2.65
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: crypto-bigint
  dependency-version: 0.7.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: curve25519-dalek
  dependency-version: 5.0.0-rc.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: ecdsa
  dependency-version: 0.17.0-rc.20
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: ed25519-dalek
  dependency-version: 3.0.0-rc.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: elliptic-curve
  dependency-version: 0.14.0-rc.35
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: log
  dependency-version: 0.4.33
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: memchr
  dependency-version: 2.8.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: openssl-sys
  dependency-version: 0.9.117
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: primefield
  dependency-version: 0.14.0-rc.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: primeorder
  dependency-version: 0.14.0-rc.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: quote
  dependency-version: 1.0.46
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: syn
  dependency-version: 2.0.118
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: wasip2
  dependency-version: 1.0.4+wasi-0.2.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: x25519-dalek
  dependency-version: 3.0.0-rc.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: validation-deps
- dependency-name: zeroize
  dependency-version: 1.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: validation-deps
...

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 22, 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