mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-28 17:21:52 +00:00
47a1575c00
Fix apresolve WIP session [Core] More migration Playing with `ReadExact` and `WriteAll` Add some simple checks Take little steps
31 lines
693 B
TOML
31 lines
693 B
TOML
[package]
|
|
name = "librespot-audio"
|
|
version = "0.1.3"
|
|
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.3"
|
|
|
|
[dependencies]
|
|
bit-set = "0.5"
|
|
byteorder = "1.3"
|
|
bytes = "0.4"
|
|
futures = "0.3"
|
|
tokio = { version = "0.2", features = ["full"] } # Temp "rt-core", "sync"
|
|
lewton = "0.9"
|
|
log = "0.4"
|
|
num-bigint = "0.3"
|
|
num-traits = "0.2"
|
|
tempfile = "3.1"
|
|
aes-ctr = "0.3"
|
|
|
|
librespot-tremor = { version = "0.1.0", optional = true }
|
|
vorbis = { version ="0.0.14", optional = true }
|
|
|
|
[features]
|
|
with-tremor = ["librespot-tremor"]
|
|
with-vorbis = ["vorbis"]
|