2017-08-03 19:37:04 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot-audio"
|
2022-05-21 20:31:15 +00:00
|
|
|
version = "0.4.0"
|
2017-08-03 19:37:04 +00:00
|
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
2022-05-21 20:51:30 +00:00
|
|
|
description = "The audio fetching logic for librespot"
|
|
|
|
license = "MIT"
|
|
|
|
repository = "https://github.com/librespot-org/librespot"
|
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"
|
2022-05-21 20:31:15 +00:00
|
|
|
version = "0.4.0"
|
2017-08-03 20:22:08 +00:00
|
|
|
|
2017-08-03 19:37:04 +00:00
|
|
|
[dependencies]
|
2021-01-21 21:12:35 +00:00
|
|
|
aes-ctr = "0.6"
|
|
|
|
byteorder = "1.4"
|
|
|
|
bytes = "1.0"
|
2019-07-08 08:08:32 +00:00
|
|
|
log = "0.4"
|
2021-02-10 22:18:13 +00:00
|
|
|
futures-util = { version = "0.3", default_features = false }
|
2019-07-08 08:08:32 +00:00
|
|
|
tempfile = "3.1"
|
2021-04-09 15:00:56 +00:00
|
|
|
tokio = { version = "1", features = ["sync", "macros"] }
|