librespot/audio/Cargo.toml

30 lines
762 B
TOML
Raw Normal View History

2017-08-03 19:37:04 +00:00
[package]
name = "librespot-audio"
2022-07-30 20:28:12 +00:00
version = "0.5.0-dev"
rust-version = "1.73"
2017-08-03 19:37:04 +00:00
authors = ["Paul Lietar <paul@lietar.net>"]
2022-05-21 20:51:30 +00:00
description = "The audio fetching logic for librespot"
license = "MIT"
repository = "https://github.com/librespot-org/librespot"
2022-08-02 19:42:38 +00:00
edition = "2021"
2017-08-03 19:37:04 +00:00
[dependencies.librespot-core]
path = "../core"
2022-07-30 20:28:12 +00:00
version = "0.5.0-dev"
2017-08-03 19:37:04 +00:00
[dependencies]
aes = "0.8"
2021-01-21 21:12:35 +00:00
byteorder = "1.4"
2022-01-08 20:21:31 +00:00
bytes = "1"
ctr = "0.9"
2022-01-08 20:21:31 +00:00
futures-core = "0.3"
futures-util = "0.3"
2024-06-06 07:41:48 +00:00
hyper = { version = "1.3", features = [] }
hyper-util = { version = "0.1", features = ["client"] }
http-body-util = "0.1.1"
2019-07-08 08:08:32 +00:00
log = "0.4"
parking_lot = { version = "0.12", 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"] }