diff --git a/Cargo.lock b/Cargo.lock index 08f6045..4162912 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1989,7 +1989,7 @@ dependencies = [ "opentelemetry_sdk 0.27.1", "ordered-float 5.0.0", "pretty_assertions", - "prometheus", + "prometheus 0.14.0", "prost", "prost-build", "regex", @@ -2340,8 +2340,8 @@ dependencies = [ "once_cell", "opentelemetry 0.27.1", "opentelemetry_sdk 0.27.1", - "prometheus", - "protobuf", + "prometheus 0.13.4", + "protobuf 2.28.0", "tracing", ] @@ -2682,10 +2682,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.12", +] + [[package]] name = "prost" version = "0.13.5" @@ -2746,6 +2761,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 = "psl-types" version = "2.0.11" diff --git a/Cargo.toml b/Cargo.toml index f185f2d..0df1639 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,7 @@ opentelemetry-proto = { workspace = true } opentelemetry-semantic-conventions = { version = "0.29.0" } opentelemetry_sdk = { version = "0.27.1", features = ["metrics"] } ordered-float = { version = "5.0.0" } -prometheus = "0.13.4" +prometheus = "0.14.0" prost = { version = "0.13.5" } regex = "1.11.1" reqwest = { version = "0.12.15", features = ["json", "native-tls-vendored", "gzip"], default-features = false }