-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (45 loc) · 1.66 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
[package]
name = "despot"
description = "Another Spotify client"
version = "0.1.0"
edition = "2021"
[dependencies]
# cushy = { version = "0.4.0", features=["tokio", "tokio-multi-thread", "plotters", "roboto-flex"], default-features = false }
cushy = { git = "https://github.com/khonsulabs/cushy.git", branch = "main", features = [
"tokio",
"tokio-multi-thread",
"plotters",
"roboto-flex",
] }
tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread"] }
plotters = { version = "0.3.7", default-features = false }
image = { version = "0.25.0", features = ["png"] }
mpris = "2.0.1"
reqwest = "0.12.8"
reqwest-middleware = "0.3.3"
http-cache-reqwest = "0.14.0"
color_quant = "1.0"
hsl = "0.1.1"
itertools = "0.10.0"
palette = "0.7.3"
clap = { version = "4.5.20", features = ["derive"] }
chrono = "0.4"
librespot-core = { git = "https://github.com/photovoltex/librespot.git", branch = "integrate-dealer" }
librespot-oauth = { git = "https://github.com/photovoltex/librespot.git", branch = "integrate-dealer" }
librespot-playback = { git = "https://github.com/photovoltex/librespot.git", branch = "integrate-dealer", features = [
"rodio-backend",
] }
librespot-protocol = { git = "https://github.com/photovoltex/librespot.git", branch = "integrate-dealer" }
librespot-connect = { git = "https://github.com/photovoltex/librespot.git", branch = "integrate-dealer" }
librespot-metadata = { git = "https://github.com/photovoltex/librespot.git", branch = "integrate-dealer" }
futures-util = { version = "0.3", features = [
"alloc",
"bilock",
"sink",
"unstable",
] }
rspotify = { version = "0.13.3" }
oauth2 = "4.4"
[profile.dev]
debug = 0
strip = "debuginfo"