mirror of
https://github.com/talwat/lowfi
synced 2025-01-13 11:51:27 +00:00
543aeee78c
* feat: initial work on decoupling embedded list file & the rest of the app * chore: rename tracks.txt to lofigirl.txt * fix: make base optional * feat: partially revert previous commit * feat: fix loading tracks with explicit url * fix: include list in main player struct * chore: reduce timeout * chore: remove unused import * fix: rename InitialProperties to PersistentVolume * feat: move persistent volume init to player init function * feat: add micropop.txt as an example of a custom tracklist * docs: add note about mp3 * docs: move format of lists to list struct docs * docs: document custom track lists * fix: fix silly spelling error * docs: update formatting * docs: fix sample formatting * docs: add missing sample track * fix: fix ui when track name has special characters * fix: use proper char counting on subject, not word * fix: use unicode-segmentation to finally fix handling special characters * fix: precompute track len * fix: switch to using the unicode-width crate * style: split off list into it's own module * fix: move logic to read a list from the fs into the list module
54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[package]
|
|
name = "lowfi"
|
|
version = "1.4.2"
|
|
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",
|
|
"fs"
|
|
], default-features = false }
|
|
futures = "0.3.30"
|
|
arc-swap = "1.7.1"
|
|
|
|
# Data
|
|
reqwest = "0.12.7"
|
|
bytes = "1.7.2"
|
|
|
|
# I/O
|
|
crossterm = { version = "0.28.1", features = ["event-stream"] }
|
|
rodio = { version = "0.19.0", features = ["symphonia-mp3"], default-features = false }
|
|
mpris-server = { version = "0.8.1", optional = true }
|
|
dirs = "5.0.1"
|
|
|
|
# Misc
|
|
scraper = "0.20.0"
|
|
Inflector = "0.11.4"
|
|
lazy_static = "1.5.0"
|
|
libc = "0.2.159"
|
|
url = "2.5.2"
|
|
unicode-width = "0.2.0"
|