changed db storing method from json to message pack remove tui fix progressbar add logging
30 lines
487 B
TOML
Executable File
30 lines
487 B
TOML
Executable File
[package]
|
|
name = "ui"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "ui"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
futures = "0.3.28"
|
|
itertools = "0.14.0"
|
|
|
|
color-eyre.workspace = true
|
|
serde.workspace = true
|
|
tokio.workspace = true
|
|
log.workspace = true
|
|
|
|
models = { path = "../models" }
|
|
db = { path = "../db" }
|
|
crawler = { path = "../crawler" }
|
|
|
|
[dependencies.indicatif]
|
|
version = "0.18.1"
|
|
features = ["futures", "tokio"]
|
|
|
|
[dependencies.clap]
|
|
version = "4.5.48"
|
|
features = ["derive", "cargo"]
|