mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
5c42d2e879
* Remove unused deps * Use futures-util instead of futures * Replace futures channels by tokio channels * Remove unnecessary pin_project * Reordered "use" statements
31 lines
739 B
TOML
31 lines
739 B
TOML
[package]
|
|
name = "librespot-audio"
|
|
version = "0.1.6"
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
description="The audio fetching and processing logic for librespot"
|
|
license="MIT"
|
|
edition = "2018"
|
|
|
|
[dependencies.librespot-core]
|
|
path = "../core"
|
|
version = "0.1.6"
|
|
|
|
[dependencies]
|
|
aes-ctr = "0.6"
|
|
byteorder = "1.4"
|
|
bytes = "1.0"
|
|
cfg-if = "1"
|
|
log = "0.4"
|
|
futures-util = { version = "0.3", default_features = false }
|
|
ogg = "0.8"
|
|
tempfile = "3.1"
|
|
tokio = { version = "1", features = ["sync"] }
|
|
|
|
lewton = { version = "0.10", optional = true }
|
|
librespot-tremor = { version = "0.2.0", optional = true }
|
|
vorbis = { version ="0.0.14", optional = true }
|
|
|
|
[features]
|
|
with-lewton = ["lewton"]
|
|
with-tremor = ["librespot-tremor"]
|
|
with-vorbis = ["vorbis"]
|