From 38330df1f9c3f8c9bbc4bc06d0683fa4016f354c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 12:21:22 +0200 Subject: [PATCH] core: bump metrics from 0.24.3 to 0.24.5 (#22030) Bumps [metrics](https://github.com/metrics-rs/metrics) from 0.24.3 to 0.24.5. - [Changelog](https://github.com/metrics-rs/metrics/blob/main/release.toml) - [Commits](https://github.com/metrics-rs/metrics/compare/metrics-v0.24.3...metrics-v0.24.5) --- updated-dependencies: - dependency-name: metrics dependency-version: 0.24.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 27 ++++++++++++--------------- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ff199156f8..6bf6ed25be 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17,18 +17,6 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" -[[package]] -name = "ahash" -version = "0.8.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" -dependencies = [ - "cfg-if", - "once_cell", - "version_check", - "zerocopy", -] - [[package]] name = "aho-corasick" version = "1.1.4" @@ -1978,12 +1966,12 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "metrics" -version = "0.24.3" +version = "0.24.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d5312e9ba3771cfa961b585728215e3d972c950a3eed9252aa093d6301277e8" +checksum = "ff56c2e7dce6bd462e3b8919986a617027481b1dcc703175b58cf9dd98a2f071" dependencies = [ - "ahash", "portable-atomic", + "rapidhash", ] [[package]] @@ -2813,6 +2801,15 @@ dependencies = [ "rand_core 0.9.5", ] +[[package]] +name = "rapidhash" +version = "4.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e48930979c155e2f33aa36ab3119b5ee81332beb6482199a8ecd6029b80b59" +dependencies = [ + "rustversion", +] + [[package]] name = "raw-cpuid" version = "11.6.0" diff --git a/Cargo.toml b/Cargo.toml index ee0da693e2..78c7772ad5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ hyper-unix-socket = "= 0.6.1" hyper-util = "= 0.1.20" ipnet = { version = "= 2.12.0", features = ["serde"] } json-subscriber = "= 0.2.8" -metrics = "= 0.24.3" +metrics = "= 0.24.5" metrics-exporter-prometheus = { version = "= 0.18.1", default-features = false } nix = { version = "= 0.31.2", features = ["hostname", "signal"] } notify = "= 8.2.0"