14 lines
490 B
TOML
14 lines
490 B
TOML
[package]
|
|
name = "tui"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
player = { path = "../player" }
|
|
library = { path = "../library" }
|
|
ratatui = "0.28"
|
|
crossterm = "0.28"
|
|
ratatui-image = { version = "1", default-features = false, features = ["crossterm", "rustix"] }
|
|
image = { version = "=0.25.1", default-features = false, features = ["jpeg", "png", "gif"] }
|
|
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] }
|