librespot/audio/Cargo.toml
Guillaume Desmottes 1912065248
Cargo: use rust-version from workspace (#1375)
Make it easier to check and update.
2024-10-17 17:01:56 +02:00

27 lines
723 B
TOML

[package]
name = "librespot-audio"
version = "0.5.0"
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.5.0"
[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 = "1.0"
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }