From 0f932ce916d8e2651451ed0351d80d6f409eecd9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 18:06:25 +0000 Subject: [PATCH] Bump prometheus from 0.13.4 to 0.14.0 Bumps [prometheus](https://github.com/tikv/rust-prometheus) from 0.13.4 to 0.14.0. - [Changelog](https://github.com/tikv/rust-prometheus/blob/master/CHANGELOG.md) - [Commits](https://github.com/tikv/rust-prometheus/compare/v0.13.4...v0.14.0) --- updated-dependencies: - dependency-name: prometheus dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 43 +++++++++++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 40 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0489e6f1f..df15b9adf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2639,7 +2639,7 @@ dependencies = [ "postgres-protocol", "postgres-types", "prio 0.18.1-alpha.3", - "prometheus", + "prometheus 0.14.0", "querystring", "quickcheck", "quickcheck_macros", @@ -3615,8 +3615,8 @@ dependencies = [ "once_cell", "opentelemetry", "opentelemetry_sdk", - "prometheus", - "protobuf", + "prometheus 0.13.4", + "protobuf 2.28.0", "tracing", ] @@ -4116,10 +4116,25 @@ dependencies = [ "lazy_static", "memchr", "parking_lot", - "protobuf", + "protobuf 2.28.0", "thiserror 1.0.69", ] +[[package]] +name = "prometheus" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" +dependencies = [ + "cfg-if", + "fnv", + "lazy_static", + "memchr", + "parking_lot", + "protobuf 3.7.2", + "thiserror 2.0.18", +] + [[package]] name = "prost" version = "0.13.1" @@ -4181,6 +4196,26 @@ version = "2.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" +[[package]] +name = "protobuf" +version = "3.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d65a1d4ddae7d8b5de68153b48f6aa3bba8cb002b243dbdbc55a5afbc98f99f4" +dependencies = [ + "once_cell", + "protobuf-support", + "thiserror 1.0.69", +] + +[[package]] +name = "protobuf-support" +version = "3.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e36c2f31e0a47f9280fb347ef5e461ffcd2c52dd520d8e216b52f93b0b0d7d6" +dependencies = [ + "thiserror 1.0.69", +] + [[package]] name = "querystring" version = "1.1.0" diff --git a/Cargo.toml b/Cargo.toml index d3392fd6e..deaff63bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,7 +77,7 @@ postgres-types = "0.2.13" pretty_assertions = "1.4.1" # Disable default features so that individual workspace crates can choose to re-enable them prio = { version = "0.18.1-alpha.3", default-features = false } -prometheus = "0.13.4" +prometheus = "0.14.0" querystring = "1.1.0" quickcheck = { version = "1.0.3", default-features = false } quickcheck_macros = "1.2.0"