2015-04-25 20:32:07 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Liétar <paul@lietar.net>"]
|
2016-08-05 11:08:32 +00:00
|
|
|
license = "MIT"
|
|
|
|
description = "Open Source Spotify client library"
|
|
|
|
keywords = ["spotify"]
|
|
|
|
repository = "https://github.com/plietar/librespot"
|
|
|
|
readme = "README.md"
|
2015-04-25 20:32:07 +00:00
|
|
|
|
2017-08-03 18:58:44 +00:00
|
|
|
[workspace]
|
|
|
|
|
2015-07-08 18:28:17 +00:00
|
|
|
[lib]
|
|
|
|
name = "librespot"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
2016-01-03 17:17:05 +00:00
|
|
|
name = "librespot"
|
2015-07-08 18:28:17 +00:00
|
|
|
path = "src/main.rs"
|
2017-01-30 10:54:54 +00:00
|
|
|
doc = false
|
2015-07-08 18:28:17 +00:00
|
|
|
|
2017-08-03 19:37:04 +00:00
|
|
|
[dependencies.librespot-audio]
|
|
|
|
path = "audio"
|
2018-02-11 15:57:55 +00:00
|
|
|
[dependencies.librespot-connect]
|
|
|
|
path = "connect"
|
2017-08-03 18:58:44 +00:00
|
|
|
[dependencies.librespot-core]
|
|
|
|
path = "core"
|
2017-08-03 19:10:48 +00:00
|
|
|
[dependencies.librespot-metadata]
|
|
|
|
path = "metadata"
|
2018-02-09 01:05:50 +00:00
|
|
|
[dependencies.librespot-playback]
|
|
|
|
path = "playback"
|
2017-08-03 19:10:48 +00:00
|
|
|
[dependencies.librespot-protocol]
|
|
|
|
path = "protocol"
|
2017-08-03 18:58:44 +00:00
|
|
|
|
2015-04-25 20:32:07 +00:00
|
|
|
[dependencies]
|
2017-08-03 20:22:08 +00:00
|
|
|
base64 = "0.5.0"
|
|
|
|
env_logger = "0.4.0"
|
|
|
|
futures = "0.1.8"
|
|
|
|
getopts = "0.2.14"
|
2017-08-03 20:30:01 +00:00
|
|
|
hyper = "0.11.2"
|
2017-08-03 20:22:08 +00:00
|
|
|
log = "0.3.5"
|
|
|
|
num-bigint = "0.1.35"
|
|
|
|
protobuf = "1.1"
|
2019-01-17 07:59:25 +00:00
|
|
|
rand = "0.6"
|
2017-08-03 20:22:08 +00:00
|
|
|
rpassword = "0.3.0"
|
|
|
|
serde = "0.9.6"
|
|
|
|
serde_derive = "0.9.6"
|
|
|
|
serde_json = "0.9.5"
|
|
|
|
tokio-core = "0.1.2"
|
2018-01-21 20:52:31 +00:00
|
|
|
tokio-io = "0.1"
|
2018-10-16 09:32:17 +00:00
|
|
|
tokio-process = "0.2.2"
|
2017-08-03 20:22:08 +00:00
|
|
|
tokio-signal = "0.1.2"
|
2018-03-24 08:00:38 +00:00
|
|
|
url = "1.7.0"
|
2018-10-15 02:07:58 +00:00
|
|
|
sha-1 = "0.8.0"
|
2018-07-23 13:41:39 +00:00
|
|
|
hex = "0.3.2"
|
2016-03-07 18:16:43 +00:00
|
|
|
|
2015-05-09 10:07:24 +00:00
|
|
|
[build-dependencies]
|
2019-01-17 07:59:25 +00:00
|
|
|
rand = "0.6"
|
2016-12-31 11:51:44 +00:00
|
|
|
vergen = "0.1.0"
|
2015-09-01 11:20:37 +00:00
|
|
|
|
2016-01-02 01:12:07 +00:00
|
|
|
[features]
|
2018-02-09 01:14:11 +00:00
|
|
|
alsa-backend = ["librespot-playback/alsa-backend"]
|
|
|
|
portaudio-backend = ["librespot-playback/portaudio-backend"]
|
|
|
|
pulseaudio-backend = ["librespot-playback/pulseaudio-backend"]
|
|
|
|
jackaudio-backend = ["librespot-playback/jackaudio-backend"]
|
2017-02-09 01:27:52 +00:00
|
|
|
|
2017-08-03 20:22:08 +00:00
|
|
|
with-tremor = ["librespot-audio/with-tremor"]
|
2018-02-06 21:50:00 +00:00
|
|
|
with-vorbis = ["librespot-audio/with-vorbis"]
|
2017-02-09 01:27:52 +00:00
|
|
|
|
2018-02-11 15:57:55 +00:00
|
|
|
with-dns-sd = ["librespot-connect/with-dns-sd"]
|
2018-01-31 11:00:53 +00:00
|
|
|
|
2018-02-09 01:05:50 +00:00
|
|
|
default = ["librespot-playback/portaudio-backend"]
|
2016-08-05 11:08:32 +00:00
|
|
|
|
|
|
|
[package.metadata.deb]
|
2018-01-31 11:00:53 +00:00
|
|
|
maintainer = "librespot-org"
|
|
|
|
copyright = "2018 Paul Liétar"
|
2016-08-05 11:08:32 +00:00
|
|
|
license_file = ["LICENSE", "4"]
|
|
|
|
depends = "$auto"
|
|
|
|
extended_description = """\
|
|
|
|
librespot is an open source client library for Spotify. It enables applications \
|
|
|
|
to use Spotify's service, without using the official but closed-source \
|
|
|
|
libspotify. Additionally, it will provide extra features which are not \
|
|
|
|
available in the official library."""
|
|
|
|
section = "sound"
|
|
|
|
priority = "optional"
|
|
|
|
assets = [
|
2016-12-21 22:21:40 +00:00
|
|
|
["target/release/librespot", "usr/bin/", "755"],
|
2017-02-16 21:38:48 +00:00
|
|
|
["contrib/librespot.service", "lib/systemd/system/", "644"]
|
2016-08-05 11:08:32 +00:00
|
|
|
]
|