2017-08-03 19:37:04 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot-audio"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
|
|
|
2017-08-03 20:22:08 +00:00
|
|
|
[dependencies.librespot-core]
|
|
|
|
path = "../core"
|
|
|
|
|
2017-08-03 19:37:04 +00:00
|
|
|
[dependencies]
|
|
|
|
bit-set = "0.4.0"
|
|
|
|
byteorder = "1.0"
|
|
|
|
futures = "0.1.8"
|
2018-02-06 21:50:00 +00:00
|
|
|
lewton = "0.8.0"
|
2017-08-03 19:37:04 +00:00
|
|
|
log = "0.3.5"
|
|
|
|
num-bigint = "0.1.35"
|
|
|
|
num-traits = "0.1.36"
|
2018-02-12 13:48:39 +00:00
|
|
|
rust-crypto = "0.2.36"
|
2017-08-03 19:37:04 +00:00
|
|
|
tempfile = "2.1"
|
|
|
|
|
2017-08-03 20:22:08 +00:00
|
|
|
tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
|
2018-02-06 21:50:00 +00:00
|
|
|
vorbis = { version ="0.1.0", optional = true }
|
2017-08-03 20:22:08 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
with-tremor = ["tremor"]
|
2018-02-06 21:50:00 +00:00
|
|
|
with-vorbis = ["vorbis"]
|