From 68037d5d30883cab372590096bd4cdaa8849a520 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 06:24:37 +0000 Subject: [PATCH] chore: bump alloy-primitives from 1.3.0 to 1.4.0 Bumps [alloy-primitives](https://github.com/alloy-rs/core) from 1.3.0 to 1.4.0. - [Release notes](https://github.com/alloy-rs/core/releases) - [Changelog](https://github.com/alloy-rs/core/blob/main/CHANGELOG.md) - [Commits](https://github.com/alloy-rs/core/compare/v1.3.0...v1.4.0) --- updated-dependencies: - dependency-name: alloy-primitives dependency-version: 1.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 ++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 932751d..7a401f3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -279,17 +279,17 @@ dependencies = [ [[package]] name = "alloy-primitives" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cfebde8c581a5d37b678d0a48a32decb51efd7a63a08ce2517ddec26db705c8" +checksum = "5b77f7d5e60ad8ae6bd2200b8097919712a07a6db622a4b201e7ead6166f02e5" dependencies = [ "alloy-rlp", "bytes", "cfg-if", "const-hex", "derive_more", - "foldhash", - "hashbrown 0.15.5", + "foldhash 0.2.0", + "hashbrown 0.16.0", "indexmap 2.10.0", "itoa", "k256", @@ -2259,6 +2259,12 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "foreign-types" version = "0.3.2" @@ -2564,7 +2570,16 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ "allocator-api2", "equivalent", - "foldhash", + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +dependencies = [ + "foldhash 0.2.0", "serde", ] diff --git a/Cargo.toml b/Cargo.toml index 1635652..fda977e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ alloy-consensus = { version = "1.0.23", default-features = false } alloy-eips = "1.0.23" alloy-genesis = "1.0.23" alloy-network = "1.0.23" -alloy-primitives = { version = "1.3.0", default-features = false } +alloy-primitives = { version = "1.4.0", default-features = false } alloy-provider = "1.0.23" alloy-rlp = "0.3.1" alloy-rpc-client = "1.0.23"