Update Rust crate metrics-exporter-prometheus to 0.16

This commit is contained in:
renovate[bot] 2024-10-12 19:18:12 +00:00 committed by GitHub
parent 22d3ee5452
commit ad0e343a6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 50 additions and 13 deletions

61
Cargo.lock generated
View file

@ -272,9 +272,9 @@ dependencies = [
"http_digest_headers",
"httpdate",
"lru",
"metrics",
"metrics 0.23.0",
"metrics-exporter-prometheus",
"metrics-util",
"metrics-util 0.17.0",
"redis",
"reqwest",
"serde",
@ -544,6 +544,12 @@ version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foldhash"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
[[package]]
name = "foreign-types"
version = "0.3.2"
@ -757,6 +763,9 @@ name = "hashbrown"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
dependencies = [
"foldhash",
]
[[package]]
name = "heck"
@ -939,7 +948,6 @@ dependencies = [
"http",
"hyper",
"hyper-util",
"log",
"rustls",
"rustls-native-certs",
"rustls-pki-types",
@ -1113,7 +1121,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
dependencies = [
"cfg-if",
"windows-targets 0.48.5",
"windows-targets 0.52.6",
]
[[package]]
@ -1221,10 +1229,20 @@ dependencies = [
]
[[package]]
name = "metrics-exporter-prometheus"
version = "0.15.3"
name = "metrics"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4f0c8427b39666bf970460908b213ec09b3b350f20c0c2eabcbba51704a08e6"
checksum = "8ae428771d17306715c5091d446327d1cfdedc82185c65ba8423ab404e45bf10"
dependencies = [
"ahash",
"portable-atomic",
]
[[package]]
name = "metrics-exporter-prometheus"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85b6f8152da6d7892ff1b7a1c0fa3f435e92b5918ad67035c3bb432111d9a29b"
dependencies = [
"base64 0.22.1",
"http-body-util",
@ -1233,8 +1251,8 @@ dependencies = [
"hyper-util",
"indexmap",
"ipnet",
"metrics",
"metrics-util",
"metrics 0.24.0",
"metrics-util 0.18.0",
"quanta",
"thiserror",
"tokio",
@ -1252,12 +1270,26 @@ dependencies = [
"crossbeam-utils",
"hashbrown 0.14.5",
"indexmap",
"metrics",
"metrics 0.23.0",
"num_cpus",
"ordered-float",
"quanta",
"radix_trie",
"sketches-ddsketch",
"sketches-ddsketch 0.2.2",
]
[[package]]
name = "metrics-util"
version = "0.18.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15b482df36c13dd1869d73d14d28cd4855fbd6cfc32294bee109908a9f4a4ed7"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
"hashbrown 0.15.0",
"metrics 0.24.0",
"quanta",
"sketches-ddsketch 0.3.0",
]
[[package]]
@ -1943,7 +1975,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2dabaac7466917e566adb06783a81ca48944c6898a1b08b9374106dd671f4c8"
dependencies = [
"aws-lc-rs",
"log",
"once_cell",
"ring",
"rustls-pki-types",
@ -2175,6 +2206,12 @@ version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
[[package]]
name = "sketches-ddsketch"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
[[package]]
name = "slab"
version = "0.4.9"

View file

@ -26,7 +26,7 @@ tokio-postgres = "0.7"
systemd = "0.10"
metrics = "0.23"
metrics-util = "0.17"
metrics-exporter-prometheus = "0.15"
metrics-exporter-prometheus = "0.16"
deunicode = "1.4"
urlencoding = "2"
httpdate = "1"