lowfi/Cargo.toml
Tal 901bf0e871
feat: support for mpris (#14)
* feat: initial support for mpris

* feat: overhaul app flow, making audio server control main thread instead of the ui thread

* fix: remove useless extra thread

* fix: last touches

* fix: call interface with minimalist flag

* fix: fix oversight when silencing alsa
2024-10-06 17:46:47 +02:00

48 lines
1.1 KiB
TOML

[package]
name = "lowfi"
version = "1.3.5"
edition = "2021"
description = "An extremely simple lofi player."
license = "MIT"
readme = "README.md"
categories = [
"command-line-interface",
"command-line-utilities",
"multimedia",
"multimedia::audio",
]
keywords = ["lowfi", "lofi", "music"]
documentation = "https://github.com/talwat/lowfi"
homepage = "https://github.com/talwat/lowfi"
repository = "https://github.com/talwat/lowfi"
[features]
mpris = ["dep:mpris-server"]
[dependencies]
# Basics
clap = { version = "4.5.18", features = ["derive", "cargo"] }
eyre = { version = "0.6.12" }
rand = "0.8.5"
# Async
tokio = { version = "1.40.0", features = [
"macros",
"rt-multi-thread",
], default-features = false }
futures = "0.3.30"
arc-swap = "1.7.1"
# Data
reqwest = "0.12.7"
bytes = "1.7.2"
# Misc
scraper = "0.20.0"
rodio = { version = "0.19.0", features = ["symphonia-mp3"], default-features = false }
crossterm = { version = "0.28.1", features = ["event-stream"] }
Inflector = "0.11.4"
lazy_static = "1.5.0"
libc = "0.2.159"
mpris-server = { version = "0.8.1", optional = true }