From ca457ead1a6d10b55671bc28606f2fe233f260f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jan 2026 19:07:31 +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 | 24 +++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 46461a2f..07788154 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2685,9 +2685,9 @@ dependencies = [ [[package]] name = "prometheus" -version = "0.13.4" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" +checksum = "3ca5326d8d0b950a9acd87e6a3f94745394f62e4dae1b1ee22b2bc0c394af43a" dependencies = [ "cfg-if", "fnv", @@ -2695,7 +2695,7 @@ dependencies = [ "memchr", "parking_lot", "protobuf", - "thiserror 1.0.69", + "thiserror 2.0.17", ] [[package]] @@ -2742,9 +2742,23 @@ dependencies = [ [[package]] name = "protobuf" -version = "2.28.0" +version = "3.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" +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 = "quick-error" diff --git a/Cargo.toml b/Cargo.toml index 32e77761..f2aa3a1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,7 @@ validator = { version = "0.18", features = ["derive"] } uuid = { version = "1.6", features = ["v4"] } # Metrics -prometheus = "0.13" +prometheus = "0.14" # OpenAPI utoipa = { version = "4.2", features = ["uuid", "chrono"] }