feat: made beacon search and list better

This commit is contained in:
Andrew Rioux
2025-02-22 20:00:28 -05:00
parent faaa4d2d1a
commit f284cf47eb
7 changed files with 497 additions and 70 deletions
Generated
+35 -5
View File
@@ -95,6 +95,12 @@ version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
[[package]]
name = "arrayvec"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
[[package]]
name = "asn1-rs"
version = "0.6.2"
@@ -725,13 +731,13 @@ dependencies = [
[[package]]
name = "cron"
version = "0.15.0"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5877d3fbf742507b66bc2a1945106bd30dd8504019d596901ddd012a4dd01740"
checksum = "eee8b2b4516038bc0f1d3c9934bcb4a13dd316e04abbc63c96757a6d75978532"
dependencies = [
"chrono",
"nom",
"once_cell",
"winnow 0.6.26",
]
[[package]]
@@ -938,6 +944,18 @@ version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "669a445ee724c5c69b1b06fe0b63e70a1c84bc9bb7d9696cd4f4e3ec45050408"
[[package]]
name = "duration-str"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b55e40ba8fc1ef074c9f9031b4cb88bb1f30c946f80a9305df44973c0b9a2d"
dependencies = [
"chrono",
"rust_decimal",
"thiserror 2.0.11",
"winnow 0.6.8",
]
[[package]]
name = "dyn-clone"
version = "1.0.18"
@@ -2984,6 +3002,16 @@ dependencies = [
"windows-sys 0.48.0",
]
[[package]]
name = "rust_decimal"
version = "1.36.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555"
dependencies = [
"arrayvec",
"num-traits",
]
[[package]]
name = "rustc-demangle"
version = "0.1.24"
@@ -3497,6 +3525,7 @@ dependencies = [
"codee 0.2.0",
"console_error_panic_hook",
"cron",
"duration-str",
"futures",
"futures-util",
"hex",
@@ -3509,6 +3538,7 @@ dependencies = [
"pbkdf2",
"rand 0.9.0",
"rcgen",
"regex",
"rpassword",
"rustls-pki-types",
"send_wrapper",
@@ -5026,9 +5056,9 @@ checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
[[package]]
name = "winnow"
version = "0.6.26"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28"
checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d"
dependencies = [
"memchr",
]