From 0f53e969bded48c5567efc3ccd56a67c97542677 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Apr 2023 09:02:49 +0000 Subject: [PATCH] deps: bump prometheus-client from 0.19.0 to 0.20.0 Bumps [prometheus-client](https://github.com/prometheus/client_rust) from 0.19.0 to 0.20.0. - [Release notes](https://github.com/prometheus/client_rust/releases) - [Changelog](https://github.com/prometheus/client_rust/blob/master/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_rust/compare/v0.19.0...v0.20.0) --- updated-dependencies: - dependency-name: prometheus-client dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- misc/metrics/Cargo.toml | 2 +- protocols/gossipsub/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0e071f5e93f..40b34b08507 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3657,9 +3657,9 @@ dependencies = [ [[package]] name = "prometheus-client" -version = "0.19.0" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e" +checksum = "e227aeb6c2cfec819e999c4773b35f8c7fa37298a203ff46420095458eee567e" dependencies = [ "dtoa", "itoa", diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index e51dd368cf5..be44cc0bf83 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -26,7 +26,7 @@ libp2p-kad = { version = "0.43.0", path = "../../protocols/kad", optional = true libp2p-ping = { version = "0.42.0", path = "../../protocols/ping", optional = true } libp2p-relay = { version = "0.15.0", path = "../../protocols/relay", optional = true } libp2p-swarm = { version = "0.42.0", path = "../../swarm" } -prometheus-client = "0.19.0" +prometheus-client = "0.20.0" [target.'cfg(not(target_os = "unknown"))'.dependencies] libp2p-gossipsub = { version = "0.44.0", path = "../../protocols/gossipsub", optional = true } diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index 103142f8c25..b4ebb087644 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -33,7 +33,7 @@ thiserror = "1.0" wasm-timer = "0.2.5" instant = "0.1.11" # Metrics dependencies -prometheus-client = "0.19.0" +prometheus-client = "0.20.0" [dev-dependencies] async-std = "1.6.3"