librespot/audio/Cargo.toml

25 lines
637 B
TOML
Raw Normal View History

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>"]
description="The audio fetching and processing logic for librespot"
license = "MIT"
edition = "2018"
2017-08-03 19:37:04 +00:00
[dependencies.librespot-core]
path = "../core"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
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"
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"
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }