mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
25 lines
716 B
TOML
25 lines
716 B
TOML
[package]
|
|
name = "librespot-audio"
|
|
version = "0.3.1"
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
description="The audio fetching and processing logic for librespot"
|
|
license = "MIT"
|
|
edition = "2018"
|
|
|
|
[dependencies.librespot-core]
|
|
path = "../core"
|
|
version = "0.3.1"
|
|
|
|
[dependencies]
|
|
aes-ctr = "0.6"
|
|
byteorder = "1.4"
|
|
bytes = "1.0"
|
|
futures-core = { version = "0.3", default-features = false }
|
|
futures-executor = "0.3"
|
|
futures-util = { version = "0.3", default_features = false }
|
|
hyper = { version = "0.14", features = ["client"] }
|
|
log = "0.4"
|
|
parking_lot = { version = "0.11", features = ["deadlock_detection"] }
|
|
tempfile = "3.1"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }
|