[package]
edition = "2021"
rust-version = "1.89"
name = "playr"
version = "0.4.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 = ["dep: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 = "commands"
path = "tests/commands.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "convert"
path = "tests/convert.rs"
[[test]]
name = "decode"
path = "tests/decode.rs"
[[test]]
name = "device"
path = "tests/device.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "library"
path = "tests/library.rs"
[[test]]
name = "meter"
path = "tests/meter.rs"
[[test]]
name = "modes"
path = "tests/modes.rs"
[[test]]
name = "order"
path = "tests/order.rs"
[[test]]
name = "output"
path = "tests/output.rs"
[[test]]
name = "position"
path = "tests/position.rs"
[[test]]
name = "render"
path = "tests/render.rs"
[[test]]
name = "resample"
path = "tests/resample.rs"
[[test]]
name = "scan"
path = "tests/scan.rs"
[dependencies.cpal]
version = "0.18.2"
[dependencies.lofty]
version = "0.25.1"
[dependencies.opus]
version = "0.4.0"
optional = true
[dependencies.ratatui]
version = "0.30.2"
[dependencies.rtrb]
version = "0.4.0"
[dependencies.rubato]
version = "5.0.0"
[dependencies.rusqlite]
version = "0.40.2"
features = ["bundled"]
[dependencies.symphonia]
version = "0.6.1"
features = ["all"]
[dependencies.toml]
version = "1.1"
features = [
"parse",
"preserve_order",
]
default-features = false
[dependencies.unicode-width]
version = "0.2.2"
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true