2017-08-03 19:37:04 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot-audio"
|
2021-10-24 18:12:33 +00:00
|
|
|
version = "0.3.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"
|
2021-12-26 21:55:45 +00:00
|
|
|
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"
|
2021-10-24 18:12:33 +00:00
|
|
|
version = "0.3.1"
|
2017-08-03 20:22:08 +00:00
|
|
|
|
2017-08-03 19:37:04 +00:00
|
|
|
[dependencies]
|
2022-01-08 19:51:51 +00:00
|
|
|
aes = { version = "0.7", features = ["ctr"] }
|
2021-01-21 21:12:35 +00:00
|
|
|
byteorder = "1.4"
|
2022-01-08 20:21:31 +00:00
|
|
|
bytes = "1"
|
|
|
|
futures-core = "0.3"
|
|
|
|
futures-util = "0.3"
|
2021-12-16 21:42:37 +00:00
|
|
|
hyper = { version = "0.14", features = ["client"] }
|
|
|
|
log = "0.4"
|
2021-12-26 21:55:45 +00:00
|
|
|
parking_lot = { version = "0.11", features = ["deadlock_detection"] }
|
2022-01-08 20:27:45 +00:00
|
|
|
tempfile = "3"
|
2021-12-16 21:42:37 +00:00
|
|
|
thiserror = "1.0"
|
2021-12-26 21:55:45 +00:00
|
|
|
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }
|