librespot/audio/Cargo.toml

26 lines
746 B
TOML
Raw Normal View History

2017-08-03 19:37:04 +00:00
[package]
name = "librespot-audio"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
2017-08-03 19:37:04 +00:00
authors = ["Paul Lietar <paul@lietar.net>"]
description="The audio fetching and processing logic for librespot"
license = "MIT"
edition = "2018"
2017-08-03 19:37:04 +00:00
[dependencies.librespot-core]
path = "../core"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
2017-08-03 19:37:04 +00:00
[dependencies]
2022-01-08 19:51:51 +00:00
aes = { version = "0.7", features = ["ctr"] }
2021-01-21 21:12:35 +00:00
byteorder = "1.4"
bytes = "1.0"
2021-12-16 21:42:37 +00:00
futures-core = { version = "0.3", default-features = false }
futures-executor = "0.3"
futures-util = { version = "0.3", default_features = false }
2021-12-16 21:42:37 +00:00
hyper = { version = "0.14", features = ["client"] }
log = "0.4"
parking_lot = { version = "0.11", features = ["deadlock_detection"] }
2019-07-08 08:08:32 +00:00
tempfile = "3.1"
2021-12-16 21:42:37 +00:00
thiserror = "1.0"
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }