From 61cd02d1de296e6ab09df30f1f88bb7c8f8cfa33 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Oct 2021 15:56:19 +0200 Subject: [PATCH] Bump prometheus from 0.12.0 to 0.13.0 (#1415) Bumps [prometheus](https://github.com/tikv/rust-prometheus) from 0.12.0 to 0.13.0. - [Release notes](https://github.com/tikv/rust-prometheus/releases) - [Changelog](https://github.com/tikv/rust-prometheus/blob/master/CHANGELOG.md) - [Commits](https://github.com/tikv/rust-prometheus/compare/v0.12.0...v0.13.0) --- updated-dependencies: - dependency-name: prometheus dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 19 +++++++++++++++++-- telemetry/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c453b35a03..8be4c9bf96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1439,7 +1439,7 @@ dependencies = [ "once_cell", "opentelemetry", "opentelemetry-prometheus", - "prometheus", + "prometheus 0.13.0", "rouille", ] @@ -1917,7 +1917,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e06ddda4790151e8b494f9bb32720fce23722d7f395f81383b9b2934bb6356a0" dependencies = [ "opentelemetry", - "prometheus", + "prometheus 0.12.0", "protobuf", ] @@ -2138,6 +2138,21 @@ dependencies = [ "thiserror", ] +[[package]] +name = "prometheus" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7f64969ffd5dd8f39bd57a68ac53c163a095ed9d0fb707146da1b27025a3504" +dependencies = [ + "cfg-if 1.0.0", + "fnv", + "lazy_static", + "memchr", + "parking_lot", + "protobuf", + "thiserror", +] + [[package]] name = "prost" version = "0.7.0" diff --git a/telemetry/Cargo.toml b/telemetry/Cargo.toml index 5ba95fcbf9..d2b087bd39 100644 --- a/telemetry/Cargo.toml +++ b/telemetry/Cargo.toml @@ -19,5 +19,5 @@ crossbeam-channel = "0.5.1" once_cell = "1.8.0" opentelemetry = "0.15.0" opentelemetry-prometheus = "0.8.0" -prometheus = "0.12.0" +prometheus = "0.13.0" rouille = "3.3.0"