Constrain run_app backend to Error = io::Error for ratatui 0.30's associated backend error type. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
362 B
TOML
22 lines
362 B
TOML
[package]
|
|
name = "tui-fm"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "tui-fm"
|
|
path = "src/main.rs"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
strip = true
|
|
|
|
[dependencies]
|
|
ratatui = "0.30"
|
|
crossterm = { version = "0.29", features = ["event-stream"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
dirs = "5"
|
|
fs_extra = "1"
|
|
unicode-width = "0.2"
|