deps: bump prometheus-client from 0.19.0 to 0.20.0

Pull-Request: #3754.
This commit is contained in:
dependabot[bot] 2023-05-02 18:49:51 +00:00 committed by GitHub
parent 2d81b99c90
commit 55e8aea237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -3895,9 +3895,9 @@ dependencies = [
[[package]] [[package]]
name = "prometheus-client" name = "prometheus-client"
version = "0.19.0" version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d6fa99d535dd930d1249e6c79cb3c2915f9172a540fe2b02a4c8f9ca954721e" checksum = "e227aeb6c2cfec819e999c4773b35f8c7fa37298a203ff46420095458eee567e"
dependencies = [ dependencies = [
"dtoa", "dtoa",
"itoa", "itoa",

View File

@ -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"] } libp2p = { path = "../../libp2p", features = ["async-std", "metrics", "ping", "noise", "identify", "tcp", "yamux", "macros"] }
log = "0.4.0" log = "0.4.0"
tokio = { version = "1", features = ["rt-multi-thread"] } tokio = { version = "1", features = ["rt-multi-thread"] }
prometheus-client = "0.19.0" prometheus-client = "0.20.0"

View File

@ -27,7 +27,7 @@ libp2p-ping = { workspace = true, optional = true }
libp2p-relay = { workspace = true, optional = true } libp2p-relay = { workspace = true, optional = true }
libp2p-swarm = { workspace = true } libp2p-swarm = { workspace = true }
libp2p-identity = { workspace = true } libp2p-identity = { workspace = true }
prometheus-client = "0.19.0" prometheus-client = "0.20.0"
[target.'cfg(not(target_os = "unknown"))'.dependencies] [target.'cfg(not(target_os = "unknown"))'.dependencies]
libp2p-gossipsub = { workspace = true, optional = true } libp2p-gossipsub = { workspace = true, optional = true }

View File

@ -35,7 +35,7 @@ wasm-timer = "0.2.5"
instant = "0.1.11" instant = "0.1.11"
void = "1.0.2" void = "1.0.2"
# Metrics dependencies # Metrics dependencies
prometheus-client = "0.19.0" prometheus-client = "0.20.0"
[dev-dependencies] [dev-dependencies]
async-std = { version = "1.6.3", features = ["unstable"] } async-std = { version = "1.6.3", features = ["unstable"] }