Skip to content

chore(deps): bump the all-deps group with 6 updates#2356

Merged
baloo merged 1 commit into
masterfrom
dependabot/cargo/all-deps-ab85d7f120
Jun 22, 2026
Merged

chore(deps): bump the all-deps group with 6 updates#2356
baloo merged 1 commit into
masterfrom
dependabot/cargo/all-deps-ab85d7f120

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all-deps group with 6 updates:

Package From To
getrandom 0.4.2 0.4.3
bytes 1.11.1 1.12.0
crypto-bigint 0.7.3 0.7.5
hashbrown 0.15.5 0.17.0
primefield 0.14.0-rc.11 0.14.0-rc.12
wit-bindgen 0.51.0 0.57.1

Updates getrandom from 0.4.2 to 0.4.3

Changelog

Sourced from getrandom's changelog.

0.4.3 - 2026-06-17

Added

  • wasm64-unknown-unknown target support for wasm_js backend #848

Changed

  • Drop wasip2 and wasip3 dependencies in favor of manual bindings #830

#830: rust-random/getrandom#830 #848: rust-random/getrandom#848

Commits

Updates bytes from 1.11.1 to 1.12.0

Release notes

Sourced from bytes's releases.

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)
Changelog

Sourced from bytes's changelog.

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)
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 hashbrown from 0.15.5 to 0.17.0

Release notes

Sourced from hashbrown's releases.

v0.17.0

Added

  • Added hash_table::OccupiedEntry::replace_entry_with (#669)
  • Added hash_map::{OccupiedEntry::into_entry, VacantEntryRef::insert_entry_with_key} (#670)
  • Added hash_table::UnsafeIter (#667)
  • Added iter methods to various HashTable iterators (#667)
  • Added HashMap::{replace_key,replace_key_unchecked,insert_with_key_unchecked} (#681)
  • Added into_map methods to all HashMap entry types (#686)
  • Added into_table methods to all HashTable entry types (#686)
  • Added #[must_use] to constructors (#697)
  • TryReserveError now implements Error (#698)

Changed

  • Changed EntryRef to use ToOwned (#670)
  • Bumped MSRV to 1.85 (2024 edition) (#676)

Fixed

  • HashTable:clone_from now forwards to RawTable::clone_from instead of using the default implementation (#668)
  • Fixed potential UB in RawTableInner::fallible_with_capacity (#692)
  • Fixed incorrect length if a hasher panics during rehash (#710)

v0.16.1

Added

  • Added HashTable methods related to the raw bucket index (#657)
  • Added VacantEntryRef::insert_with_key (#579)

Changed

  • Removed specialization for Copy types (#662)
  • The get_many_mut family of methods have been renamed to get_disjoint_mut to match the standard library. The old names are still present for now, but deprecated. (#648)
  • Recognize and use over-sized allocations when using custom allocators. (#523)
  • Depend on serde_core instead of serde. (#649)
  • Optimized collect on rayon parallel iterators. (#652)

v0.16.0

Changed

  • Bump foldhash, the default hasher, to 0.2.0.
  • Replaced DefaultHashBuilder with a newtype wrapper around foldhash instead of re-exporting it directly.
Changelog

Sourced from hashbrown's changelog.

0.17.0 - 2026-04-06

Added

  • Added hash_table::OccupiedEntry::replace_entry_with (#669)
  • Added hash_map::{OccupiedEntry::into_entry, VacantEntryRef::insert_entry_with_key} (#670)
  • Added hash_table::UnsafeIter (#667)
  • Added iter methods to various HashTable iterators (#667)
  • Added HashMap::{replace_key,replace_key_unchecked,insert_with_key_unchecked} (#681)
  • Added into_map methods to all HashMap entry types (#686)
  • Added into_table methods to all HashTable entry types (#686)
  • Added #[must_use] to constructors (#697)
  • TryReserveError now implements Error (#698)

Changed

  • Changed EntryRef to use ToOwned (#670)
  • Bumped MSRV to 1.85 (2024 edition) (#676)

Fixed

  • HashTable:clone_from now forwards to RawTable::clone_from instead of using the default implementation (#668)
  • Fixed potential UB in RawTableInner::fallible_with_capacity (#692)
  • Fixed incorrect length if a hasher panics during rehash (#710)

0.16.1 - 2025-11-20

Added

  • Added HashTable methods related to the raw bucket index (#657)
  • Added VacantEntryRef::insert_with_key (#579)

Changed

  • Removed specialization for Copy types (#662)
  • The get_many_mut family of methods have been renamed to get_disjoint_mut to match the standard library. The old names are still present for now, but deprecated. (#648)
  • Recognize and use over-sized allocations when using custom allocators. (#523)
  • Depend on serde_core instead of serde. (#649)
  • Optimized collect on rayon parallel iterators. (#652)

0.16.0 - 2025-08-28

Changed

  • Bump foldhash, the default hasher, to 0.2.0.
  • Replaced DefaultHashBuilder with a newtype wrapper around foldhash instead of re-exporting it directly.
Commits
  • d290456 Bump version to 0.17.0
  • d937c63 Update changelog for version 0.17.0
  • 4a6fba6 chore: release v0.16.2
  • 3b6489a Merge pull request #710 from Amanieu/fix-rehash-unwind
  • 375087f Reduce test runtime on Miri
  • b1c4403 Merge pull request #709 from 0xdeafbeef/benches
  • e542702 Merge benches; split bench helpers
  • 3d1517f Check benches with clippy, don't run ever on CI
  • e82981c chore: move to criterion benches from nightly
  • 6cb0eb5 Fix incorrect length if a hasher panics during rehash
  • Additional commits viewable in compare view

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

Commits

Updates wit-bindgen from 0.51.0 to 0.57.1

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 all-deps group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [getrandom](https://github.com/rust-random/getrandom) | `0.4.2` | `0.4.3` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.11.1` | `1.12.0` |
| [crypto-bigint](https://github.com/RustCrypto/crypto-bigint) | `0.7.3` | `0.7.5` |
| [hashbrown](https://github.com/rust-lang/hashbrown) | `0.15.5` | `0.17.0` |
| [primefield](https://github.com/RustCrypto/elliptic-curves) | `0.14.0-rc.11` | `0.14.0-rc.12` |
| [wit-bindgen](https://github.com/bytecodealliance/wit-bindgen) | `0.51.0` | `0.57.1` |


Updates `getrandom` from 0.4.2 to 0.4.3
- [Changelog](https://github.com/rust-random/getrandom/blob/master/CHANGELOG.md)
- [Commits](rust-random/getrandom@v0.4.2...v0.4.3)

Updates `bytes` from 1.11.1 to 1.12.0
- [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.11.1...v1.12.0)

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 `hashbrown` from 0.15.5 to 0.17.0
- [Release notes](https://github.com/rust-lang/hashbrown/releases)
- [Changelog](https://github.com/rust-lang/hashbrown/blob/main/CHANGELOG.md)
- [Commits](rust-lang/hashbrown@v0.15.5...v0.17.0)

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 `wit-bindgen` from 0.51.0 to 0.57.1
- [Release notes](https://github.com/bytecodealliance/wit-bindgen/releases)
- [Commits](bytecodealliance/wit-bindgen@v0.51.0...v0.57.1)

---
updated-dependencies:
- dependency-name: getrandom
  dependency-version: 0.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: bytes
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: crypto-bigint
  dependency-version: 0.7.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: hashbrown
  dependency-version: 0.17.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: primefield
  dependency-version: 0.14.0-rc.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: wit-bindgen
  dependency-version: 0.57.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-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
@baloo baloo merged commit 513ab9a into master Jun 22, 2026
188 checks passed
@baloo baloo deleted the dependabot/cargo/all-deps-ab85d7f120 branch June 22, 2026 22:18
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