diff --git a/Cargo.lock b/Cargo.lock index fdabc4101..2d241acab 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2639,7 +2639,7 @@ dependencies = [ "postgres-protocol", "postgres-types", "prio", - "prometheus", + "prometheus 0.14.0", "quickcheck", "quickcheck_macros", "rand 0.8.5", @@ -3622,8 +3622,8 @@ dependencies = [ "once_cell", "opentelemetry", "opentelemetry_sdk", - "prometheus", - "protobuf", + "prometheus 0.13.4", + "protobuf 2.28.0", ] [[package]] @@ -4143,10 +4143,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" @@ -4208,6 +4223,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" @@ -6283,7 +6318,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 14b6cc1cc..903a369ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -75,7 +75,7 @@ pretty_assertions = "1.4.1" # Disable default features so that individual workspace crates can choose to # re-enable them prio = { version = "0.16.8", 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"