upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-12-04 15:17:04 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-12-04 15:24:19 +0000
commitfd0c87c787d0626b3546fa571541c9c809711821 (patch)
tree934f20d973127f380b807d2bd44b25c197cf349c /Cargo.lock
parent762cd8e815e797f173f541795de774fbbf978fc3 (diff)
add prometheus metrics
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock45
1 files changed, 44 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 2935855..a035f75 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -468,6 +468,19 @@ dependencies = [
468] 468]
469 469
470[[package]] 470[[package]]
471name = "dashmap"
472version = "5.5.3"
473source = "registry+https://github.com/rust-lang/crates.io-index"
474checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
475dependencies = [
476 "cfg-if",
477 "hashbrown 0.14.5",
478 "lock_api",
479 "once_cell",
480 "parking_lot_core",
481]
482
483[[package]]
471name = "data-encoding" 484name = "data-encoding"
472version = "2.9.0" 485version = "2.9.0"
473source = "registry+https://github.com/rust-lang/crates.io-index" 486source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -813,6 +826,12 @@ dependencies = [
813 826
814[[package]] 827[[package]]
815name = "hashbrown" 828name = "hashbrown"
829version = "0.14.5"
830source = "registry+https://github.com/rust-lang/crates.io-index"
831checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
832
833[[package]]
834name = "hashbrown"
816version = "0.16.0" 835version = "0.16.0"
817source = "registry+https://github.com/rust-lang/crates.io-index" 836source = "registry+https://github.com/rust-lang/crates.io-index"
818checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" 837checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
@@ -1163,7 +1182,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1163checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f" 1182checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1164dependencies = [ 1183dependencies = [
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]]
1812name = "prometheus"
1813version = "0.13.4"
1814source = "registry+https://github.com/rust-lang/crates.io-index"
1815checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
1816dependencies = [
1817 "cfg-if",
1818 "fnv",
1819 "lazy_static",
1820 "memchr",
1821 "parking_lot",
1822 "protobuf",
1823 "thiserror 1.0.69",
1824]
1825
1826[[package]]
1827name = "protobuf"
1828version = "2.28.0"
1829source = "registry+https://github.com/rust-lang/crates.io-index"
1830checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
1831
1832[[package]]
1790name = "quote" 1833name = "quote"
1791version = "1.0.41" 1834version = "1.0.41"
1792source = "registry+https://github.com/rust-lang/crates.io-index" 1835source = "registry+https://github.com/rust-lang/crates.io-index"