2017-08-03 18:58:44 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot-core"
|
2020-07-29 15:23:41 +00:00
|
|
|
version = "0.1.3"
|
2017-08-03 18:58:44 +00:00
|
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
|
|
build = "build.rs"
|
2019-11-06 15:50:26 +00:00
|
|
|
description="The core functionality provided by librespot"
|
|
|
|
license="MIT"
|
2020-01-17 18:09:10 +00:00
|
|
|
edition = "2018"
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
[dependencies.librespot-protocol]
|
|
|
|
path = "../protocol"
|
2020-07-29 15:23:41 +00:00
|
|
|
version = "0.1.3"
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-07-08 08:08:32 +00:00
|
|
|
base64 = "0.10"
|
|
|
|
byteorder = "1.3"
|
2018-01-21 20:52:31 +00:00
|
|
|
bytes = "0.4"
|
2019-07-08 08:08:32 +00:00
|
|
|
error-chain = { version = "0.12", default_features = false }
|
|
|
|
futures = "0.1"
|
|
|
|
httparse = "1.3"
|
|
|
|
hyper = "0.11"
|
|
|
|
hyper-proxy = { version = "0.4", default_features = false }
|
|
|
|
lazy_static = "1.3"
|
|
|
|
log = "0.4"
|
|
|
|
num-bigint = "0.2"
|
|
|
|
num-integer = "0.1"
|
|
|
|
num-traits = "0.2"
|
2020-07-22 10:47:25 +00:00
|
|
|
protobuf = "~2.14.0"
|
2019-07-08 08:08:32 +00:00
|
|
|
rand = "0.7"
|
2019-03-15 14:50:15 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2017-08-03 20:22:08 +00:00
|
|
|
shannon = "0.2.0"
|
2019-07-08 08:08:32 +00:00
|
|
|
tokio-codec = "0.1"
|
|
|
|
tokio-core = "0.1"
|
2018-01-21 20:52:31 +00:00
|
|
|
tokio-io = "0.1"
|
2019-07-08 08:08:32 +00:00
|
|
|
url = "1.7"
|
|
|
|
uuid = { version = "0.7", features = ["v4"] }
|
|
|
|
sha-1 = "0.8"
|
|
|
|
hmac = "0.7"
|
|
|
|
pbkdf2 = "0.3"
|
|
|
|
aes = "0.3"
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2019-07-08 08:08:32 +00:00
|
|
|
rand = "0.7"
|
2019-07-09 16:32:04 +00:00
|
|
|
vergen = "3.0.4"
|