mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
2a6d7545ca
* Update sysinfo to 0.33 * Update thiserror to v2.0 * Update Alpine Dockerfile to 1.75 (MSRV) * Update governor to 0.8 * Update quick-xml to 0.37 * Update rodio to 0.20.1 * Update zerocopy to 0.8.13 * Update alpine image to 3.19 --------- Signed-off-by: yubiuser <github@yubiuser.dev>
27 lines
731 B
TOML
27 lines
731 B
TOML
[package]
|
|
name = "librespot-audio"
|
|
version = "0.6.0-dev"
|
|
rust-version.workspace = true
|
|
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.6.0-dev"
|
|
|
|
[dependencies]
|
|
aes = "0.8"
|
|
bytes = "1"
|
|
ctr = "0.9"
|
|
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 = "2.0"
|
|
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }
|