Skip to content

chore(deps): bump the cargo group across 1 directory with 10 updates - #1462

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/examples/developer-hub-rust/cargo-1b2ee5a9a6
Open

chore(deps): bump the cargo group across 1 directory with 10 updates#1462
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/examples/developer-hub-rust/cargo-1b2ee5a9a6

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor

Bumps the cargo group with 8 updates in the /examples/developer-hub-rust directory:

Package From To
alloy-dyn-abi 1.3.0 1.7.1
bytes 1.10.1 1.12.1
openssl 0.10.73 0.10.81
rand 0.8.5 0.8.8
rand 0.9.2 0.9.5
ruint 1.16.0 1.20.0
rustls-webpki 0.103.4 0.103.15
serde_with 3.14.0 3.22.0
slab 0.4.10 0.4.12

Updates alloy-dyn-abi from 1.3.0 to 1.7.1

Release notes

Sourced from alloy-dyn-abi's releases.

alloy-core v1.7.1

What's Changed

Full Changelog: alloy-rs/core@v1.7.0...v1.7.1

alloy-core v1.7.0

What's Changed

New Contributors

Full Changelog: alloy-rs/core@v1.6.1...v1.7.0

alloy-core v1.6.1

What's Changed

... (truncated)

Changelog

Sourced from alloy-dyn-abi's changelog.

1.7.1 - 2026-08-25

Bug Fixes

  • [sol-types] Default config trait methods (#1171)

Miscellaneous Tasks

  • Use underscores for lint names (#1169)

1.7.0 - 2026-08-25

Bug Fixes

  • [sol-types] Validate dynamic array length before allocation (#1164)
  • [primitives] Require list header when decoding logs (#1166)
  • [sol-macro] Preserve nested ABI component names (#1162)
  • [dyn-abi] Coerce JSON int values above i64::MAX for signed types (#1158)
  • [primitives] Return Err on parse_units multiply overflow (#1156)
  • Restore changelogs (#1154)

Dependencies

  • [deps] Bump the ci-weekly group with 2 updates (#1163)
  • [deps] Bump actions/checkout from 7.0.0 to 7.0.1 in the ci-weekly group (#1159)

Features

  • [sol-types] Add AbiDecoderConfig (#1167)
  • [dyn-abi] Add indexed event topic encoding for DynSolValue (#1161)
  • [json-abi] Support enum definitions (#1155)

Miscellaneous Tasks

  • Release 1.7.0

Performance

  • Manual Ord for FixedBytes using integer chunk comparison (#1160)

Testing

  • Remove needless hash borrow (#1168)

1.6.1 - 2026-07-16

Bug Fixes

  • [sol-macro] Derive namespaced custom types (#1152)
  • [syn-solidity] Strip namespaces from custom types in EIP-712 formatting (#1146)

... (truncated)

Commits
  • 0021401 chore: release 1.7.1
  • 7d534fb fix(sol-types): default config trait methods (#1171)
  • b7b7ca8 chore: use underscores for lint names (#1169)
  • 35d5089 chore: release 1.7.0
  • 269e18e fix(sol-types): validate dynamic array length before allocation (#1164)
  • 8b8e772 test: remove needless hash borrow (#1168)
  • dd2b02d feat(sol-types): add AbiDecoderConfig (#1167)
  • 6cddb17 fix(primitives): require list header when decoding logs (#1166)
  • 7663d21 fix(sol-macro): preserve nested ABI component names (#1162)
  • f61a6c6 chore(deps): bump the ci-weekly group with 2 updates (#1163)
  • Additional commits viewable in compare view

Updates bytes from 1.10.1 to 1.12.1

Release notes

Sourced from bytes's releases.

Bytes v1.12.1

1.12.1 (July 8th, 2026)

Fixed

  • Properly handle when Box::new panics (#837)

Bytes v1.12.0

1.12.0 (June 18th, 2026)

Added

  • Add BytesMut::extend_from_within() (#818)
  • Add BytesMut::try_unsplit() (#746)

Fixed

  • Fix panic in get_int if nbytes is zero (#806)

Changed

  • Pass vtable data by value (#826)
  • Exclude development scripts from published package (#810)

Documented

  • Document that BytesMut::{reserve,try_reserve} doesn't preserve unused capacity (#808)

Bytes v1.11.1

1.11.1 (February 3rd, 2026)

  • Fix integer overflow in BytesMut::reserve

Bytes v1.11.0

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)
Changelog

Sourced from bytes's changelog.

1.12.1 (July 8th, 2026)

Fixed

  • Properly handle when Box::new panics (#837)

1.12.0 (June 18th, 2026)

Added

  • Add BytesMut::extend_from_within() (#818)
  • Add BytesMut::try_unsplit() (#746)

Fixed

  • Fix panic in get_int if nbytes is zero (#806)

Changed

  • Pass vtable data by value (#826)
  • Exclude development scripts from published package (#810)

Documented

  • Document that BytesMut::{reserve,try_reserve} doesn't preserve unused capacity (#808)

1.11.1 (February 3rd, 2026)

  • Fix integer overflow in BytesMut::reserve

1.11.0 (November 14th, 2025)

  • Bump MSRV to 1.57 (#788)

Fixed

  • fix: BytesMut only reuse if src has remaining (#803)
  • Specialize BytesMut::put::<Bytes> (#793)
  • Reserve capacity in BytesMut::put (#794)
  • Change BytesMut::remaining_mut to use isize::MAX instead of usize::MAX (#795)

Internal changes

  • Guarantee address in slice() for empty slices. (#780)
  • Rename Vtable::to_* -> Vtable::into_* (#776)
  • Fix latest clippy warnings (#787)
  • Ignore BytesMut::freeze doctest on wasm (#790)
  • Move drop_fn of from_owner into vtable (#801)
Commits

Updates keccak from 0.1.5 to 0.2.2

Commits

Updates openssl from 0.10.73 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

openssl-v0.10.80

What's Changed

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

openssl-v0.10.79

What's Changed

Full Changelog: rust-openssl/rust-openssl@openssl-v0.10.78...openssl-v0.10.79

... (truncated)

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)
  • 35be7ae Release openssl 0.10.80 and openssl-sys 0.9.116 (#2639)
  • Additional commits viewable in compare view

Updates rand from 0.8.5 to 0.8.8

Changelog

Sourced from rand's changelog.

[0.8.8] - 2026-08-25

Fixes

  • Fix build for --no-default-features --features serde1 (#1825)

#1825: rust-random/rand#1825

[0.8.7] - 2026-07-02

Fixes

  • Fix possible memory safety violation due to deserialization of UniformChar from bad source (#1804)

#1804: rust-random/rand#1804

[0.8.6] - 2026-04-14

This release back-ports a fix from v0.10. See also #1763.

Changes

  • Deprecate feature log (#1772)

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

  • Drop the experimental simd_support feature.
Commits

Updates rand from 0.9.2 to 0.9.5

Changelog

Sourced from rand's changelog.

[0.8.8] - 2026-08-25

Fixes

  • Fix build for --no-default-features --features serde1 (#1825)

#1825: rust-random/rand#1825

[0.8.7] - 2026-07-02

Fixes

  • Fix possible memory safety violation due to deserialization of UniformChar from bad source (#1804)

#1804: rust-random/rand#1804

[0.8.6] - 2026-04-14

This release back-ports a fix from v0.10. See also #1763.

Changes

  • Deprecate feature log (#1772)

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

  • Drop the experimental simd_support feature.
Commits

Updates ruint from 1.16.0 to 1.20.0

Release notes

Sourced from ruint's releases.

v1.20.0

What's Changed

New Contributors

Full Changelog: alloy-rs/ruint@v1.19.0...v1.20.0

v1.19.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from ruint's changelog.

[1.20.0] - 2026-07-30

Changed

  • Open-code PartialEq and is_zero on riscv to avoid memcmp libcalls (#604)
  • Run the core test suite on wasm32-wasip1 in CI to catch 32-bit pointer-width bugs (#609)
  • Make reverse_bits, most_significant_bits, inv_ring, checked_pow, strict_pow, overflowing_pow, pow, saturating_pow, wrapping_pow, from_limbs_slice, checked_from_limbs_slice, wrapping_from_limbs_slice, overflowing_from_limbs_slice, saturating_from_limbs_slice, from_uint, and checked_from_uint const (#614)

Fixed

  • Fix overflowing_shl/overflowing_shr overflow-flag false negatives, which also corrected the dependent checked_*/strict_*/saturating_* shifts and byte() (#603)
  • Fix from_str_radix rejecting the lowercase digits gz in radix 64 (#605)
  • Reject non-finite f64 in TryFrom<f64> and saturate Uintf64 conversions at 2^1024 for large BITS (#606)
  • try_from_be_slice/try_from_le_slice now return None instead of panicking for BITS % 64 in 57..=63 (#607)
  • from_str_radix and to_base_be no longer hang or silently accept radix/base 0 or 1 (#608)
  • checked_log, checked_log2, and checked_log10 no longer panic for small bit-widths where the base constant does not fit the type (#610)
  • Fix incorrect doc comments and formulas in the add, mul, and gcd algorithms (#611)
  • Mark addmul_nx1/submul_nx1 unsafe and close soundness / safety-contract gaps in the unstable algorithms module (#612)

#603: alloy-rs/ruint#603 #604: alloy-rs/ruint#604 #605: alloy-rs/ruint#605 #606: alloy-rs/ruint#606 #607: alloy-rs/ruint#607 #608: alloy-rs/ruint#608 #609: alloy-rs/ruint#609 #610: alloy-rs/ruint#610 #611: alloy-rs/ruint#611 #612: alloy-rs/ruint#612 #614: alloy-rs/ruint#614

[1.19.0] - 2026-07-03

Added

  • strict_* arithmetic operations (#595)
  • ark-ff-06 feature flag for conversion to ark-ff@0.6 types (#584)

Changed

  • Made from_str_radix const (#591)
  • Made multiplication functions const (#590)
  • Optimize Ord::cmp by comparing via subtraction (#579)
  • Optimize bit count helpers (leading/trailing zeros, count ones) (#578)
  • Optimize shift implementations (#574)

Fixed

  • Fix to_be_bytes on big-endian platforms (#576)

... (truncated)

Commits
  • 0fccc10 chore: release 1.20.0 (#620)
  • cc712d5 fix: overflowing_shl/overflowing_shr overflow-flag false negatives (#603)
  • c65fb92 perf: open-code Uint PartialEq and is_zero on riscv to avoid memcmp libcall (...
  • 1151ed5 docs: add agent guidelines (#618)
  • ecd22fe feat: make more Uint methods const (#614)
  • 1bc9f39 chore: infer rustfmt edition (#619)
  • 3569160 z (#605)
  • 555d753 fix: reject non-finite f64 and saturate Uint→f64 at 2^1024 (#606)
  • 8c211d5 fix: try_from_*_slice returns None instead of panicking for BITS % 64 in 57.....
  • 2e4ca83 fix: str radix errors now (#608)
  • Additional commits viewable in compare view

Updates rustls-webpki from 0.103.4 to 0.103.15

Release notes

Sourced from rustls-webpki's releases.

v/0.103.15

Fixes docs.rs build errors.

What's Changed

Full Changelog: https://github.com/rustls/webpki/compare/v/0.103.14..v/0.103.15

v/0.103.14

What's Changed

Full Changelog: rustls/webpki@v/0.103.13...v/0.103.14

0.103.13

  • Fix reachable panic in parsing a CRL. This was reported to us as GHSA-82j2-j2ch-gfr8. Users who don't use CRLs are not affected.
  • For name constraints on URI names, we incorrectly processed excluded subtrees in a way which inverted the desired meaning. See rustls/webpki#471. This was a case missing in the fix for GHSA-965h-392x-2mh5.

What's Changed

Full Changelog: rustls/webpki@v/0.103.12...v/0.103.13

0.103.12

This release fixes t...

Description has been truncated

Bumps the cargo group with 8 updates in the /examples/developer-hub-rust directory:

| Package | From | To |
| --- | --- | --- |
| [alloy-dyn-abi](https://github.com/alloy-rs/core) | `1.3.0` | `1.7.1` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.10.1` | `1.12.1` |
| [openssl](https://github.com/rust-openssl/rust-openssl) | `0.10.73` | `0.10.81` |
| [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.8.8` |
| [rand](https://github.com/rust-random/rand) | `0.9.2` | `0.9.5` |
| [ruint](https://github.com/alloy-rs/ruint) | `1.16.0` | `1.20.0` |
| [rustls-webpki](https://github.com/rustls/webpki) | `0.103.4` | `0.103.15` |
| [serde_with](https://github.com/jonasbb/serde_with) | `3.14.0` | `3.22.0` |
| [slab](https://github.com/tokio-rs/slab) | `0.4.10` | `0.4.12` |



Updates `alloy-dyn-abi` from 1.3.0 to 1.7.1
- [Release notes](https://github.com/alloy-rs/core/releases)
- [Changelog](https://github.com/alloy-rs/core/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/core@v1.3.0...v1.7.1)

Updates `bytes` from 1.10.1 to 1.12.1
- [Release notes](https://github.com/tokio-rs/bytes/releases)
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/bytes@v1.10.1...v1.12.1)

Updates `keccak` from 0.1.5 to 0.2.2
- [Commits](RustCrypto/sponges@keccak-v0.1.5...keccak-v0.2.2)

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

Updates `rand` from 0.8.5 to 0.8.8
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/0.8.8/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...0.8.8)

Updates `rand` from 0.9.2 to 0.9.5
- [Release notes](https://github.com/rust-random/rand/releases)
- [Changelog](https://github.com/rust-random/rand/blob/0.8.8/CHANGELOG.md)
- [Commits](rust-random/rand@0.8.5...0.8.8)

Updates `ruint` from 1.16.0 to 1.20.0
- [Release notes](https://github.com/alloy-rs/ruint/releases)
- [Changelog](https://github.com/alloy-rs/ruint/blob/main/CHANGELOG.md)
- [Commits](alloy-rs/ruint@v1.16.0...v1.20.0)

Updates `rustls-webpki` from 0.103.4 to 0.103.15
- [Release notes](https://github.com/rustls/webpki/releases)
- [Commits](rustls/webpki@v/0.103.4...v/0.103.15)

Updates `serde_with` from 3.14.0 to 3.22.0
- [Release notes](https://github.com/jonasbb/serde_with/releases)
- [Commits](jonasbb/serde_with@v3.14.0...v3.22.0)

Updates `slab` from 0.4.10 to 0.4.12
- [Release notes](https://github.com/tokio-rs/slab/releases)
- [Changelog](https://github.com/tokio-rs/slab/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/slab@v0.4.10...v0.4.12)

Updates `time` from 0.3.41 to 0.3.55
- [Release notes](https://github.com/time-rs/time/releases)
- [Changelog](https://github.com/time-rs/time/blob/main/CHANGELOG.md)
- [Commits](time-rs/time@v0.3.41...v0.3.55)

---
updated-dependencies:
- dependency-name: alloy-dyn-abi
  dependency-version: 1.7.1
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: bytes
  dependency-version: 1.12.1
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: keccak
  dependency-version: 0.2.2
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: openssl
  dependency-version: 0.10.81
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rand
  dependency-version: 0.8.8
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rand
  dependency-version: 0.9.5
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: ruint
  dependency-version: 1.20.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: rustls-webpki
  dependency-version: 0.103.15
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: serde_with
  dependency-version: 3.22.0
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: slab
  dependency-version: 0.4.12
  dependency-type: indirect
  dependency-group: cargo
- dependency-name: time
  dependency-version: 0.3.55
  dependency-type: indirect
  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 Aug 31, 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