-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (35 loc) · 839 Bytes
/
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
[package]
name = "spotifm"
version = "2.0.0"
authors = ["waveplate"]
license = "GPL"
description = "stream spotify via icecast"
keywords = ["spotify"]
repository = "https://github.com/waveplate/spotifm"
readme = "README.md"
edition = "2021"
[workspace]
[[bin]]
name = "spotifm"
path = "src/main.rs"
doc = false
[dependencies]
tokio = { version = "1", features = ["macros", "signal", "sync", "process"] }
signal-hook = "*"
rustbreak = { version = "2.0.0", features = ["ron_enc"] }
serde_derive = "1"
actix-rt = "1.1.0"
actix-web = "3.0.0-alpha.1"
serde = "1.0.106"
serde_json = "1.0.51"
env_logger = "0.7.1"
chrono = "*"
iconv = "*"
rand = "*"
[dependencies.librespot]
version = "0.4.1"
features = ["pulseaudio-backend"]
[dependencies.rspotify]
version = "0.11.5"
default-features = false
features = ["client-ureq", "ureq-rustls-tls"]