mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
29 lines
762 B
TOML
29 lines
762 B
TOML
[package]
|
|
name = "librespot-audio"
|
|
version = "0.5.0-dev"
|
|
rust-version = "1.71"
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
description = "The audio fetching logic for librespot"
|
|
license = "MIT"
|
|
repository = "https://github.com/librespot-org/librespot"
|
|
edition = "2021"
|
|
|
|
[dependencies.librespot-core]
|
|
path = "../core"
|
|
version = "0.5.0-dev"
|
|
|
|
[dependencies]
|
|
aes = "0.8"
|
|
byteorder = "1.4"
|
|
bytes = "1"
|
|
ctr = "0.9"
|
|
futures-core = "0.3"
|
|
futures-util = "0.3"
|
|
hyper = { version = "1.3", features = [] }
|
|
hyper-util = { version = "0.1", features = ["client"] }
|
|
http-body-util = "0.1.1"
|
|
log = "0.4"
|
|
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
|
|
tempfile = "3"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }
|