2017-08-03 19:37:04 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot-audio"
|
2020-01-30 01:39:41 +00:00
|
|
|
version = "0.1.1"
|
2017-08-03 19:37:04 +00:00
|
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
2019-11-06 15:50:26 +00:00
|
|
|
description="The audio fetching and processing logic for librespot"
|
|
|
|
license="MIT"
|
2020-01-17 18:09:10 +00:00
|
|
|
edition = "2018"
|
2017-08-03 19:37:04 +00:00
|
|
|
|
2017-08-03 20:22:08 +00:00
|
|
|
[dependencies.librespot-core]
|
|
|
|
path = "../core"
|
2020-01-30 01:39:41 +00:00
|
|
|
version = "0.1.1"
|
2017-08-03 20:22:08 +00:00
|
|
|
|
2017-08-03 19:37:04 +00:00
|
|
|
[dependencies]
|
2019-07-08 08:08:32 +00:00
|
|
|
bit-set = "0.5"
|
|
|
|
byteorder = "1.3"
|
2019-11-01 21:38:46 +00:00
|
|
|
bytes = "0.4"
|
2019-07-08 08:08:32 +00:00
|
|
|
futures = "0.1"
|
|
|
|
lewton = "0.9"
|
|
|
|
log = "0.4"
|
|
|
|
num-bigint = "0.2"
|
|
|
|
num-traits = "0.2"
|
|
|
|
tempfile = "3.1"
|
|
|
|
aes-ctr = "0.3"
|
2017-08-03 19:37:04 +00:00
|
|
|
|
2019-11-06 15:40:13 +00:00
|
|
|
librespot-tremor = { version = "0.1.0", optional = true }
|
2020-07-22 15:23:44 +00:00
|
|
|
vorbis = { version ="0.0.14", optional = true }
|
2017-08-03 20:22:08 +00:00
|
|
|
|
|
|
|
[features]
|
2019-11-06 15:40:13 +00:00
|
|
|
with-tremor = ["librespot-tremor"]
|
2018-02-06 21:50:00 +00:00
|
|
|
with-vorbis = ["vorbis"]
|