2024-09-23 19:59:07 +00:00
|
|
|
[package]
|
2024-09-26 14:27:37 +00:00
|
|
|
name = "lowfi"
|
2024-10-06 07:36:06 +00:00
|
|
|
version = "1.3.5"
|
2024-09-23 19:59:07 +00:00
|
|
|
edition = "2021"
|
2024-09-27 22:06:22 +00:00
|
|
|
description = "An extremely simple lofi player."
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
2024-10-01 22:10:38 +00:00
|
|
|
categories = [
|
|
|
|
"command-line-interface",
|
|
|
|
"command-line-utilities",
|
|
|
|
"multimedia",
|
|
|
|
"multimedia::audio",
|
|
|
|
]
|
2024-09-27 22:06:22 +00:00
|
|
|
keywords = ["lowfi", "lofi", "music"]
|
|
|
|
documentation = "https://github.com/talwat/lowfi"
|
|
|
|
homepage = "https://github.com/talwat/lowfi"
|
|
|
|
repository = "https://github.com/talwat/lowfi"
|
2024-09-23 19:59:07 +00:00
|
|
|
|
2024-10-06 15:46:47 +00:00
|
|
|
[features]
|
|
|
|
mpris = ["dep:mpris-server"]
|
|
|
|
|
2024-09-23 19:59:07 +00:00
|
|
|
[dependencies]
|
2024-09-25 20:32:16 +00:00
|
|
|
# Basics
|
2024-09-23 19:59:07 +00:00
|
|
|
clap = { version = "4.5.18", features = ["derive", "cargo"] }
|
2024-10-01 22:10:38 +00:00
|
|
|
eyre = { version = "0.6.12" }
|
2024-09-25 20:32:16 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
|
|
|
|
# Async
|
2024-10-01 22:10:38 +00:00
|
|
|
tokio = { version = "1.40.0", features = [
|
|
|
|
"macros",
|
|
|
|
"rt-multi-thread",
|
|
|
|
], default-features = false }
|
2024-09-23 19:59:07 +00:00
|
|
|
futures = "0.3.30"
|
2024-09-25 20:32:16 +00:00
|
|
|
arc-swap = "1.7.1"
|
|
|
|
|
|
|
|
# Data
|
2024-10-01 22:10:38 +00:00
|
|
|
reqwest = "0.12.7"
|
2024-09-23 19:59:07 +00:00
|
|
|
bytes = "1.7.2"
|
2024-09-25 20:32:16 +00:00
|
|
|
|
|
|
|
# Misc
|
|
|
|
scraper = "0.20.0"
|
2024-10-01 22:10:38 +00:00
|
|
|
rodio = { version = "0.19.0", features = ["symphonia-mp3"], default-features = false }
|
2024-10-06 15:46:47 +00:00
|
|
|
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
2024-09-26 19:00:03 +00:00
|
|
|
Inflector = "0.11.4"
|
2024-10-01 17:28:46 +00:00
|
|
|
lazy_static = "1.5.0"
|
2024-10-02 20:56:01 +00:00
|
|
|
libc = "0.2.159"
|
2024-10-06 15:46:47 +00:00
|
|
|
mpris-server = { version = "0.8.1", optional = true }
|