mirror of
https://github.com/talwat/lowfi
synced 2024-12-25 02:31:54 +00:00
54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[package]
|
|
name = "lowfi"
|
|
version = "1.5.3"
|
|
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.21", features = ["derive", "cargo"] }
|
|
eyre = { version = "0.6.12" }
|
|
rand = "0.8.5"
|
|
|
|
# Async
|
|
tokio = { version = "1.41.1", features = [
|
|
"macros",
|
|
"rt-multi-thread",
|
|
"fs"
|
|
], default-features = false }
|
|
futures = "0.3.31"
|
|
arc-swap = "1.7.1"
|
|
|
|
# Data
|
|
reqwest = "0.12.9"
|
|
bytes = "1.9.0"
|
|
|
|
# I/O
|
|
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
|
rodio = { version = "0.20.1", features = ["symphonia-mp3"], default-features = false }
|
|
mpris-server = { version = "0.8.1", optional = true }
|
|
dirs = "5.0.1"
|
|
|
|
# Misc
|
|
scraper = "0.21.0"
|
|
Inflector = "0.11.4"
|
|
lazy_static = "1.5.0"
|
|
libc = "0.2.167"
|
|
url = "2.5.4"
|
|
unicode-width = "0.2.0"
|