-
Notifications
You must be signed in to change notification settings - Fork 126
/
Cargo.toml
75 lines (60 loc) · 1.3 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "spot"
version = "0.4.0"
edition = "2018"
license = "MIT"
[dependencies.gtk]
version = "^0.6.6"
package = "gtk4"
features = ["gnome_44", "blueprint"]
[dependencies.libadwaita]
version = "^0.4.1"
features = ["v1_2"]
[dependencies.gdk]
version = "^0.6.3"
package = "gdk4"
[dependencies.gio]
version = "^0.17.9"
features = ["v2_60"]
[dependencies.glib]
version = "^0.17.9"
features = ["v2_60"]
[dependencies.librespot]
version = "0.4.2"
features = ["alsa-backend", "pulseaudio-backend", "gstreamer-backend"]
[dependencies.tokio]
version = "1"
features = ["rt", "macros", "sync"]
[dependencies.futures]
package = "futures"
version = "0.3.18"
[dependencies.serde]
version = "^1.0.136"
features = ["derive"]
[dependencies.serde_json]
version = "^1.0.96"
[dependencies.isahc]
version = "^1.7.2"
features = ["json"]
[dependencies.rand]
version = "^0.8.5"
features = ["small_rng"]
[dependencies.gettext-rs]
version = "0.7.0"
features = ["gettext-system"]
[dependencies.secret-service]
version = "3.0.1"
features = ["rt-async-io-crypto-rust"]
[dependencies]
gdk-pixbuf = "0.17.0"
ref_filter_map = "1.0.1"
regex = "1.8.3"
async-std = "1.12.0"
form_urlencoded = "1.0.1"
zbus = "3.13"
zvariant = "3.14"
thiserror = "1.0.40"
lazy_static = "1.4.0"
log = "0.4.17"
env_logger = "0.10.0"
percent-encoding = "2.2.0"