forked from Spotifyd/spotifyd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (48 loc) · 1.39 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
[package]
authors = ["Simon Persson <[email protected]>", "Sven Lechner <[email protected]>"]
edition = "2018"
name = "spotifyd"
description = "A Spotify daemon"
repository = "https://github.com/Spotifyd/spotifyd"
license = "GPL-3.0-only"
version = "0.2.24"
[dependencies]
alsa = { version = "0.3", optional = true }
chrono = "0.4"
daemonize = "0.4"
dbus = { version = "0.6", optional = true }
dbus-tokio = { version = "0.2", optional = true }
failure = "0.1.7"
fern = { version = "0.6.0", features = ["syslog-4"] }
futures = "0.1"
gethostname = "0.2.0"
hex = "0.4"
keyring = { version = "0.8.0", optional = true }
lazy_static = "1.4.0"
libc = "0.2.67"
log = "0.4.6"
percent-encoding = "2.1.0"
rspotify = "0.8.0"
serde = { version = "1.0.103", features = ["derive"] }
serde_ini = "0.2.0"
sha-1 = "0.8"
structopt = "0.3.11"
syslog = "4"
tokio-core = "0.1"
tokio-io = "0.1"
tokio-signal = "0.1"
url = "1.7"
xdg = "2.2"
librespot = { version = "0.1.1", default-features = false, features = ["with-tremor"] }
[target."cfg(target_os = \"macos\")".dependencies]
whoami = "0.8.1"
[dev-dependencies]
env_logger = "0.7"
[features]
alsa_backend = ["librespot/alsa-backend", "alsa"]
dbus_keyring = ["keyring"]
dbus_mpris = ["dbus", "dbus-tokio"]
default = ["alsa_backend"]
portaudio_backend = ["librespot/portaudio-backend"]
pulseaudio_backend = ["librespot/pulseaudio-backend"]
rodio_backend = ["librespot/rodio-backend"]