From b2166e7f170848e2f545f8b33149ba58571c5287 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jul 2023 04:35:16 +0000 Subject: [PATCH] deps: bump prometheus-client from 0.21.1 to 0.21.2 Bumps [prometheus-client](https://github.com/prometheus/client_rust) from 0.21.1 to 0.21.2. - [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.21.1...v0.21.2) --- updated-dependencies: - dependency-name: prometheus-client dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- 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 cef33101b5f..4ff68b48b48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4175,9 +4175,9 @@ dependencies = [ [[package]] name = "prometheus-client" -version = "0.21.1" +version = "0.21.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78c2f43e8969d51935d2a7284878ae053ba30034cd563f673cde37ba5205685e" +checksum = "3c99afa9a01501019ac3a14d71d9f94050346f55ca471ce90c799a15c58f61e2" dependencies = [ "dtoa", "itoa", diff --git a/examples/metrics/Cargo.toml b/examples/metrics/Cargo.toml index 463b98a2383..f883127ee25 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.19" tokio = { version = "1", features = ["rt-multi-thread"] } -prometheus-client = "0.21.0" +prometheus-client = "0.21.2" diff --git a/misc/metrics/Cargo.toml b/misc/metrics/Cargo.toml index 7a579408409..90e46cf4fe4 100644 --- a/misc/metrics/Cargo.toml +++ b/misc/metrics/Cargo.toml @@ -28,7 +28,7 @@ libp2p-ping = { workspace = true, optional = true } libp2p-relay = { workspace = true, optional = true } libp2p-swarm = { workspace = true } libp2p-identity = { workspace = true } -prometheus-client = { version = "0.21.1"} +prometheus-client = { version = "0.21.2"} once_cell = "1.18.0" [target.'cfg(not(target_os = "unknown"))'.dependencies] diff --git a/protocols/gossipsub/Cargo.toml b/protocols/gossipsub/Cargo.toml index 5b4a5e54575..669eed0abef 100644 --- a/protocols/gossipsub/Cargo.toml +++ b/protocols/gossipsub/Cargo.toml @@ -40,7 +40,7 @@ unsigned-varint = { version = "0.7.0", features = ["asynchronous_codec"] } void = "1.0.2" # Metrics dependencies -prometheus-client = "0.21.0" +prometheus-client = "0.21.2" [dev-dependencies] async-std = { version = "1.6.3", features = ["unstable"] }