From 2c0bf499595c5ada6de1c7f23ace69693034895f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Dec 2025 20:17:45 +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 | 45 ++++++++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 41 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5c61ba1fb..846a57ccb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2571,7 +2571,7 @@ dependencies = [ "postgres-protocol", "postgres-types", "prio 0.18.1-alpha.2", - "prometheus", + "prometheus 0.14.0", "querystring", "quickcheck", "quickcheck_macros", @@ -3535,8 +3535,8 @@ dependencies = [ "once_cell", "opentelemetry", "opentelemetry_sdk", - "prometheus", - "protobuf", + "prometheus 0.13.4", + "protobuf 2.28.0", "tracing", ] @@ -4067,10 +4067,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.17", +] + [[package]] name = "prost" version = "0.13.1" @@ -4132,6 +4147,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" @@ -6134,7 +6169,7 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "37f303a99a7a00c127cff63985b16d4d78c8ec9af17102a40debe80eb19a68e1" dependencies = [ - "prometheus", + "prometheus 0.13.4", "tracing", "trillium", "trillium-router", diff --git a/Cargo.toml b/Cargo.toml index fca4e409c..d7504f874 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,7 @@ postgres-types = "0.2.11" 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.2", default-features = false, features = ["experimental"] } -prometheus = "0.13.4" +prometheus = "0.14.0" querystring = "1.1.0" quickcheck = { version = "1.0.3", default-features = false } quickcheck_macros = "1.1.0"