2024-09-23 19:59:07 +00:00
|
|
|
[package]
|
2024-09-26 14:27:37 +00:00
|
|
|
name = "lowfi"
|
2024-10-01 17:28:46 +00:00
|
|
|
version = "1.2.0"
|
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"
|
|
|
|
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"
|
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"] }
|
|
|
|
eyre = "0.6.12"
|
2024-09-25 20:32:16 +00:00
|
|
|
rand = "0.8.5"
|
|
|
|
|
|
|
|
# Async
|
|
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
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
|
|
|
|
reqwest = { version = "0.12.7", features = ["blocking"] }
|
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"
|
|
|
|
rodio = { version = "0.19.0", features = ["mp3"], default-features = false }
|
2024-09-24 08:32:42 +00:00
|
|
|
crossterm = "0.28.1"
|
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"
|