From 55e8aea237a5277564df9bc0ccea189dc1660cc9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 May 2023 18:49:51 +0000 Subject: [PATCH] deps: bump prometheus-client from 0.19.0 to 0.20.0 Pull-Request: #3754. --- Cargo.lock | 4 ++-- examples/metrics/Cargo.toml | 2 +- misc/metrics/Cargo.toml | 2 +- protocols/gossipsub/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 978a40d6..cbe91192 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3895,9 +3895,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/examples/metrics/Cargo.toml b/examples/metrics/Cargo.toml index 32d745e8..ba08cdae 100644 --- a/examples/metrics/Cargo.toml +++ b/examples/metrics/Cargo.toml @@ -12,4 +12,4 @@ hyper = { version = "0.14", features = ["server", "tcp", "http1"] } libp2p = { path = "../../libp2p", features = ["async-std", "metrics", "ping", "noise", "identify", "tcp", "yamux", "macros"] } log = "0.4.0" tokio = { version = "1", features = ["rt-multi-thread"] } -prometheus-client = "0.19.0" +prometheus-client = "0.20.0" diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index 05a5fa38..9fafe680 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -27,7 +27,7 @@ libp2p-ping = { workspace = true, optional = true } libp2p-relay = { workspace = true, optional = true } libp2p-swarm = { workspace = true } libp2p-identity = { workspace = true } -prometheus-client = "0.19.0" +prometheus-client = "0.20.0" [target.'cfg(not(target_os = "unknown"))'.dependencies] libp2p-gossipsub = { workspace = true, optional = true } diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index a095256a..9cc46dc3 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -35,7 +35,7 @@ wasm-timer = "0.2.5" instant = "0.1.11" void = "1.0.2" # Metrics dependencies -prometheus-client = "0.19.0" +prometheus-client = "0.20.0" [dev-dependencies] async-std = { version = "1.6.3", features = ["unstable"] }