feat: harmony terminal ui can now browse scores and (almost) launch them

This commit is contained in:
2025-01-28 16:51:58 -05:00
parent 3410751463
commit 6628e193e0
8 changed files with 107 additions and 39 deletions

24
harmony-rs/Cargo.lock generated
View File

@@ -993,6 +993,15 @@ dependencies = [
"slab",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
"byteorder",
]
[[package]]
name = "generic-array"
version = "0.14.7"
@@ -1113,6 +1122,7 @@ dependencies = [
"ratatui",
"tokio",
"tokio-stream",
"tui-logger",
]
[[package]]
@@ -3537,6 +3547,20 @@ version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "tui-logger"
version = "0.14.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55a5249b5e5df37af5389721794f9839dad0b3f7b92445f24528199acf2f1805"
dependencies = [
"chrono",
"fxhash",
"lazy_static",
"log",
"parking_lot",
"ratatui",
]
[[package]]
name = "typenum"
version = "1.17.0"