librespot/audio/Cargo.toml

35 lines
728 B
TOML
Raw Normal View History

2017-08-03 19:37:04 +00:00
[package]
name = "librespot-audio"
2021-02-22 00:37:28 +00:00
version = "0.1.6"
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-02-22 00:37:28 +00:00
version = "0.1.6"
2017-08-03 19:37:04 +00:00
[dependencies]
2021-01-21 21:12:35 +00:00
aes-ctr = "0.6"
2019-07-08 08:08:32 +00:00
bit-set = "0.5"
2021-01-21 21:12:35 +00:00
byteorder = "1.4"
bytes = "1.0"
2021-02-10 22:07:59 +00:00
cfg-if = "1"
2021-01-21 21:12:35 +00:00
futures = "0.3"
2019-07-08 08:08:32 +00:00
log = "0.4"
num-bigint = "0.3"
2019-07-08 08:08:32 +00:00
num-traits = "0.2"
2021-02-10 22:07:59 +00:00
ogg = "0.8"
pin-project-lite = "0.2.4"
2019-07-08 08:08:32 +00:00
tempfile = "3.1"
2017-08-03 19:37:04 +00:00
2021-02-10 22:07:59 +00:00
lewton = { version = "0.10", optional = true }
librespot-tremor = { version = "0.2.0", optional = true }
vorbis = { version ="0.0.14", optional = true }
[features]
2021-02-10 22:07:59 +00:00
with-lewton = ["lewton"]
with-tremor = ["librespot-tremor"]
with-vorbis = ["vorbis"]