forked from talwat/lowfi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (45 loc) · 1.12 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[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"