[package]
edition = "2021"
rust-version = "1.89"
name = "playr"
version = "0.7.0"
build = false
exclude = ["docs/dev/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal TUI music player that plays local files and contacts nothing"
homepage = "https://github.com/shakfu/playr"
readme = "README.md"
keywords = [
"music",
"player",
"tui",
"audio",
"flac",
]
categories = [
"multimedia::audio",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/shakfu/playr"
[features]
default = []
opus = ["playr-core/opus"]
[lib]
name = "playr"
path = "src/lib.rs"
[[bin]]
name = "playr"
path = "src/main.rs"
[[test]]
name = "app"
path = "tests/app.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "keys"
path = "tests/keys.rs"
[[test]]
name = "palette"
path = "tests/palette.rs"
[[test]]
name = "render"
path = "tests/render.rs"
[[test]]
name = "sampler"
path = "tests/sampler.rs"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.playr-app]
version = "0.7.0"
[dependencies.playr-core]
version = "0.7.0"
[dependencies.ratatui]
version = "0.30.2"
[dependencies.rusqlite]
version = "0.40.2"
features = ["bundled"]
[dependencies.serde_json]
version = "1"
[dependencies.unicode-width]
version = "0.2.2"
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.cpal]
version = "0.18.2"
[dev-dependencies.hound]
version = "3.5"
[dev-dependencies.rtrb]
version = "0.4.0"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true