Files
rate_music/Cargo.toml

27 lines
586 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.28.1"
mpris = "2.0.1"
ratatui = "0.29"
sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio"] }
tokio = { version = "1.36.0", features = ["rt", "macros", "rt-multi-thread"] }
tui-textarea = "0.7.0"
axum = "0.8.3"
[profile.optimize]
inherits = "release"
opt-level = "z"
debug = false
strip = true
lto = true
codegen-units = 1
incremental = false
panic = "abort"