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", ] }