diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-04 15:17:04 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-04 15:24:19 +0000 |
| commit | fd0c87c787d0626b3546fa571541c9c809711821 (patch) | |
| tree | 934f20d973127f380b807d2bd44b25c197cf349c /Cargo.lock | |
| parent | 762cd8e815e797f173f541795de774fbbf978fc3 (diff) | |
add prometheus metrics
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 45 |
1 files changed, 44 insertions, 1 deletions
| @@ -468,6 +468,19 @@ dependencies = [ | |||
| 468 | ] | 468 | ] |
| 469 | 469 | ||
| 470 | [[package]] | 470 | [[package]] |
| 471 | name = "dashmap" | ||
| 472 | version = "5.5.3" | ||
| 473 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 474 | checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" | ||
| 475 | dependencies = [ | ||
| 476 | "cfg-if", | ||
| 477 | "hashbrown 0.14.5", | ||
| 478 | "lock_api", | ||
| 479 | "once_cell", | ||
| 480 | "parking_lot_core", | ||
| 481 | ] | ||
| 482 | |||
| 483 | [[package]] | ||
| 471 | name = "data-encoding" | 484 | name = "data-encoding" |
| 472 | version = "2.9.0" | 485 | version = "2.9.0" |
| 473 | source = "registry+https://github.com/rust-lang/crates.io-index" | 486 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -813,6 +826,12 @@ dependencies = [ | |||
| 813 | 826 | ||
| 814 | [[package]] | 827 | [[package]] |
| 815 | name = "hashbrown" | 828 | name = "hashbrown" |
| 829 | version = "0.14.5" | ||
| 830 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 831 | checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" | ||
| 832 | |||
| 833 | [[package]] | ||
| 834 | name = "hashbrown" | ||
| 816 | version = "0.16.0" | 835 | version = "0.16.0" |
| 817 | source = "registry+https://github.com/rust-lang/crates.io-index" | 836 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 818 | checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" | 837 | checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" |
| @@ -1163,7 +1182,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1163 | checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" | 1182 | checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" |
| 1164 | dependencies = [ | 1183 | dependencies = [ |
| 1165 | "equivalent", | 1184 | "equivalent", |
| 1166 | "hashbrown", | 1185 | "hashbrown 0.16.0", |
| 1167 | ] | 1186 | ] |
| 1168 | 1187 | ||
| 1169 | [[package]] | 1188 | [[package]] |
| @@ -1353,6 +1372,7 @@ dependencies = [ | |||
| 1353 | "anyhow", | 1372 | "anyhow", |
| 1354 | "base64 0.22.1", | 1373 | "base64 0.22.1", |
| 1355 | "clap", | 1374 | "clap", |
| 1375 | "dashmap", | ||
| 1356 | "dotenvy", | 1376 | "dotenvy", |
| 1357 | "flate2", | 1377 | "flate2", |
| 1358 | "futures-util", | 1378 | "futures-util", |
| @@ -1360,9 +1380,11 @@ dependencies = [ | |||
| 1360 | "http-body-util", | 1380 | "http-body-util", |
| 1361 | "hyper 1.8.1", | 1381 | "hyper 1.8.1", |
| 1362 | "hyper-util", | 1382 | "hyper-util", |
| 1383 | "lazy_static", | ||
| 1363 | "nostr-lmdb", | 1384 | "nostr-lmdb", |
| 1364 | "nostr-relay-builder", | 1385 | "nostr-relay-builder", |
| 1365 | "nostr-sdk 0.44.1", | 1386 | "nostr-sdk 0.44.1", |
| 1387 | "prometheus", | ||
| 1366 | "serde", | 1388 | "serde", |
| 1367 | "serde_json", | 1389 | "serde_json", |
| 1368 | "tempfile", | 1390 | "tempfile", |
| @@ -1787,6 +1809,27 @@ dependencies = [ | |||
| 1787 | ] | 1809 | ] |
| 1788 | 1810 | ||
| 1789 | [[package]] | 1811 | [[package]] |
| 1812 | name = "prometheus" | ||
| 1813 | version = "0.13.4" | ||
| 1814 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1815 | checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1" | ||
| 1816 | dependencies = [ | ||
| 1817 | "cfg-if", | ||
| 1818 | "fnv", | ||
| 1819 | "lazy_static", | ||
| 1820 | "memchr", | ||
| 1821 | "parking_lot", | ||
| 1822 | "protobuf", | ||
| 1823 | "thiserror 1.0.69", | ||
| 1824 | ] | ||
| 1825 | |||
| 1826 | [[package]] | ||
| 1827 | name = "protobuf" | ||
| 1828 | version = "2.28.0" | ||
| 1829 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1830 | checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94" | ||
| 1831 | |||
| 1832 | [[package]] | ||
| 1790 | name = "quote" | 1833 | name = "quote" |
| 1791 | version = "1.0.41" | 1834 | version = "1.0.41" |
| 1792 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1835 | source = "registry+https://github.com/rust-lang/crates.io-index" |