Files
rate_music/Cargo.toml
2025-04-07 14:37:32 +02:00

26 lines
571 B
TOML

[package]
name = "rate_music"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.81"
crossterm = "0.27.0"
mpris = "2.0.1"
ratatui = "0.29"
sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio"] }
tokio = { version = "1.36.0", features = ["rt", "macros", "rt-multi-thread"] }
tui-textarea = "0.4.0"
[profile.optimize]
inherits = "release"
opt-level = "z"
debug = false
strip = true
lto = true
codegen-units = 1
incremental = false
panic = "abort"