From 9579e8fa2c39cf2d9e49a25abf478748155af066 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 18:51:42 +0000 Subject: [PATCH] chore(deps): bump const-hex from 1.15.0 to 1.17.0 Bumps [const-hex](https://github.com/danipopes/const-hex) from 1.15.0 to 1.17.0. - [Commits](https://github.com/danipopes/const-hex/compare/v1.15.0...v1.17.0) --- updated-dependencies: - dependency-name: const-hex dependency-version: 1.17.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 28 +++++++++++++++++----------- crates/beacon-client/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 859f6bac..7421e3c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2389,15 +2389,14 @@ dependencies = [ [[package]] name = "const-hex" -version = "1.15.0" +version = "1.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dccd746bf9b1038c0507b7cec21eb2b11222db96a2902c96e8c185d6d20fb9c4" +checksum = "3bb320cac8a0750d7f25280aa97b09c26edfe161164238ecbbb31092b079e735" dependencies = [ "cfg-if", "cpufeatures", - "hex", "proptest", - "serde", + "serde_core", ] [[package]] @@ -3661,9 +3660,6 @@ name = "hex" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -dependencies = [ - "serde", -] [[package]] name = "hex-conservative" @@ -6573,18 +6569,28 @@ checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" [[package]] name = "serde" -version = "1.0.219" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.219" +version = "1.0.228" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", diff --git a/crates/beacon-client/Cargo.toml b/crates/beacon-client/Cargo.toml index afdd98a8..37ca5fc1 100644 --- a/crates/beacon-client/Cargo.toml +++ b/crates/beacon-client/Cargo.toml @@ -7,7 +7,7 @@ version = { workspace = true } alloy = { workspace = true } alloy-rpc-types-engine = { workspace = true, features = ["jwt", "serde"] } blst = { workspace = true } -const-hex = "1.15.0" +const-hex = "1.17.0" hex = { workspace = true } reqwest = { version = "0.12.23", features = ["json"] } serde = { workspace = true, features = ["derive"] }