2018-02-09 01:05:50 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot-playback"
|
2020-07-29 15:23:41 +00:00
|
|
|
version = "0.1.3"
|
2018-02-09 01:05:50 +00:00
|
|
|
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
|
2019-11-06 15:50:26 +00:00
|
|
|
description="The audio playback logic for librespot"
|
|
|
|
license="MIT"
|
2020-11-26 19:30:37 +00:00
|
|
|
repository = "https://github.com/librespot-org/librespot"
|
2020-01-17 18:09:10 +00:00
|
|
|
edition = "2018"
|
2018-02-09 01:05:50 +00:00
|
|
|
|
|
|
|
[dependencies.librespot-audio]
|
|
|
|
path = "../audio"
|
2020-07-29 15:23:41 +00:00
|
|
|
version = "0.1.3"
|
2018-02-09 01:05:50 +00:00
|
|
|
[dependencies.librespot-core]
|
|
|
|
path = "../core"
|
2020-07-29 15:23:41 +00:00
|
|
|
version = "0.1.3"
|
2018-02-09 01:05:50 +00:00
|
|
|
[dependencies.librespot-metadata]
|
|
|
|
path = "../metadata"
|
2020-07-29 15:23:41 +00:00
|
|
|
version = "0.1.3"
|
2018-02-09 01:05:50 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-07-08 08:08:32 +00:00
|
|
|
futures = "0.1"
|
|
|
|
log = "0.4"
|
|
|
|
byteorder = "1.3"
|
2020-01-24 00:35:24 +00:00
|
|
|
shell-words = "0.1.0"
|
2018-02-09 01:05:50 +00:00
|
|
|
|
2020-04-07 03:29:29 +00:00
|
|
|
alsa = { version = "0.2", optional = true }
|
|
|
|
portaudio-rs = { version = "0.3", optional = true }
|
2018-02-09 01:05:50 +00:00
|
|
|
libpulse-sys = { version = "0.0.0", optional = true }
|
2020-04-07 03:29:29 +00:00
|
|
|
jack = { version = "0.5", optional = true }
|
2018-02-09 01:05:50 +00:00
|
|
|
libc = { version = "0.2", optional = true }
|
2019-10-09 05:53:21 +00:00
|
|
|
rodio = { version = "0.9", optional = true, default-features = false }
|
2019-07-08 08:08:32 +00:00
|
|
|
cpal = { version = "0.8", optional = true }
|
2018-12-28 02:46:27 +00:00
|
|
|
sdl2 = { version = "0.32", optional = true }
|
2020-04-07 03:29:29 +00:00
|
|
|
gstreamer = { version = "0.15", optional = true }
|
|
|
|
gstreamer-app = { version = "0.15", optional = true }
|
|
|
|
glib = { version = "0.9", optional = true }
|
|
|
|
zerocopy = { version = "0.2", optional = true }
|
2018-02-09 01:05:50 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
alsa-backend = ["alsa"]
|
|
|
|
portaudio-backend = ["portaudio-rs"]
|
|
|
|
pulseaudio-backend = ["libpulse-sys", "libc"]
|
|
|
|
jackaudio-backend = ["jack"]
|
2019-03-20 13:21:50 +00:00
|
|
|
rodio-backend = ["rodio", "cpal"]
|
2018-12-28 02:46:27 +00:00
|
|
|
sdl-backend = ["sdl2"]
|
2020-07-29 15:23:41 +00:00
|
|
|
gstreamer-backend = ["gstreamer", "gstreamer-app", "glib", "zerocopy"]
|