forked from hrkfdn/ncspot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.11 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
[package]
name = "ncspot"
description = "ncurses Spotify client written in Rust using librespot, inspired by ncmpc and the likes."
exclude = ["screenshots/**"]
version = "0.1.0"
authors = ["Henrik Friedrichsen <[email protected]>"]
repository = "https://github.com/hrkfdn/ncspot"
keywords = ["spotify", "ncurses", "librespot"]
license = "MIT"
[badges]
travis-ci = { repository = "hrkfdn/ncspot", branch = "master" }
maintenance = { status = "experimental" }
[dependencies]
crossbeam-channel = "0.3.8"
env_logger = "0.6.0"
failure = "0.1.3"
futures = "0.1"
log = "0.4.0"
rspotify = "0.2.5"
serde = "1.0"
serde_derive = "1.0"
toml = "0.4"
tokio-core = "0.1"
tokio-timer = "0.2"
unicode-width = "0.1.5"
[dependencies.librespot]
git = "https://github.com/librespot-org/librespot.git"
rev = "daeeeaa122fc2d71edf11e562e23038db4210b39"
default-features = false
[dependencies.cursive]
git = "https://github.com/gyscos/Cursive.git"
default-features = false
features = ["pancurses-backend"]
[features]
pulseaudio_backend = ["librespot/pulseaudio-backend"]
portaudio_backend = ["librespot/portaudio-backend"]
default = ["pulseaudio_backend"]