lots of things

changed db storing method from json to message pack
remove tui
fix progressbar
add logging
This commit is contained in:
William
2026-01-08 22:15:45 +08:00
parent 743261ce4f
commit eb9dcd15e8
23 changed files with 100 additions and 896 deletions

View File

@@ -29,13 +29,20 @@ lazy_static = "1.5.0"
color-eyre = { version = "0.6.5" }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
rmp-serde = "1.3.1"
log = "0.4.29"
ratatui = { version = "0.29.0", features = ["all-widgets"] }
dashmap = { version = "6.1.0", features = ["serde"] }
chrono = { version = "0.4.42", features = ["serde"] }
[dependencies]
color-eyre = "0.6.5"
jemallocator = "0.5.4"
tokio = { version = "1.48.0", features = ["macros"] }
clap_builder = "4.5.53"
fern = { version = "0.7.1", features = ["chrono", "colored"] }
chrono.workspace = true
log.workspace = true
ui = { path = "./ui" }
models = { path = "./models" }