From cf56c9fecdc42261fd9a8caf85352489db3b41fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 09:00:32 +0000 Subject: [PATCH] Bump metrics from 0.23.0 to 0.24.0 Bumps [metrics](https://github.com/metrics-rs/metrics) from 0.23.0 to 0.24.0. - [Changelog](https://github.com/metrics-rs/metrics/blob/main/release.toml) - [Commits](https://github.com/metrics-rs/metrics/compare/metrics-v0.23.0...metrics-v0.24.0) --- updated-dependencies: - dependency-name: metrics dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++++--- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 254ca67f..31cbb90c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4007,6 +4007,16 @@ dependencies = [ "portable-atomic", ] +[[package]] +name = "metrics" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ae428771d17306715c5091d446327d1cfdedc82185c65ba8423ab404e45bf10" +dependencies = [ + "ahash 0.8.11", + "portable-atomic", +] + [[package]] name = "metrics-exporter-prometheus" version = "0.15.3" @@ -4020,7 +4030,7 @@ dependencies = [ "hyper-util", "indexmap 2.6.0", "ipnet", - "metrics", + "metrics 0.23.0", "metrics-util", "quanta", "thiserror", @@ -4037,7 +4047,7 @@ dependencies = [ "crossbeam-epoch", "crossbeam-utils", "hashbrown 0.14.5", - "metrics", + "metrics 0.23.0", "num_cpus", "quanta", "sketches-ddsketch", @@ -5959,7 +5969,7 @@ dependencies = [ "indexmap 2.6.0", "itertools 0.13.0", "lazy_static", - "metrics", + "metrics 0.24.0", "metrics-exporter-prometheus", "moka", "object_store", diff --git a/Cargo.toml b/Cargo.toml index 34de8fee..0abdac97 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -102,7 +102,7 @@ hex = ">=0.4.0" indexmap = "2.6.0" itertools = { workspace = true } lazy_static = ">=1.4.0" -metrics = { version = "0.23.0" } +metrics = { version = "0.24.0" } metrics-exporter-prometheus = { version = "0.15.3" } moka = { version = "0.12.5", default-features = false, features = ["future", "atomic64", "quanta"] } object_store = { version = "0.10.2", features = ["aws", "azure", "gcp"] }