From 44db26840e116bd58f6be022be741a4520e97fbc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 23:19:29 +0000 Subject: [PATCH] [chore(cargo)](deps): Bump metrics from 0.21.1 to 0.22.0 Bumps [metrics](https://github.com/metrics-rs/metrics) from 0.21.1 to 0.22.0. - [Changelog](https://github.com/metrics-rs/metrics/blob/main/release.toml) - [Commits](https://github.com/metrics-rs/metrics/compare/metrics-v0.21.1...metrics-v0.22.0) --- updated-dependencies: - dependency-name: metrics dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++++--- homestar-runtime/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6edd408f..e9fbc29e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2522,7 +2522,7 @@ dependencies = [ "libp2p", "libsqlite3-sys", "maplit", - "metrics", + "metrics 0.22.0", "metrics-exporter-prometheus", "metrics-util", "miette", @@ -4043,6 +4043,16 @@ dependencies = [ "portable-atomic", ] +[[package]] +name = "metrics" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77b9e10a211c839210fd7f99954bda26e5f8e26ec686ad68da6a32df7c80e782" +dependencies = [ + "ahash", + "portable-atomic", +] + [[package]] name = "metrics-exporter-prometheus" version = "0.12.2" @@ -4053,7 +4063,7 @@ dependencies = [ "hyper", "indexmap 1.9.3", "ipnet", - "metrics", + "metrics 0.21.1", "metrics-util", "quanta", "thiserror", @@ -4082,7 +4092,7 @@ dependencies = [ "crossbeam-utils", "hashbrown 0.13.2", "indexmap 1.9.3", - "metrics", + "metrics 0.21.1", "num_cpus", "ordered-float", "quanta", diff --git a/homestar-runtime/Cargo.toml b/homestar-runtime/Cargo.toml index cd9842ee..f1de0b6f 100644 --- a/homestar-runtime/Cargo.toml +++ b/homestar-runtime/Cargo.toml @@ -105,7 +105,7 @@ libp2p = { version = "0.53", default-features = false, features = [ ] } libsqlite3-sys = { workspace = true } maplit = "1.0" -metrics = { version = "0.21", default-features = false } +metrics = { version = "0.22", default-features = false } metrics-exporter-prometheus = { version = "0.12.1", default-features = false, features = [ "http-listener", ] }