2017-08-03 18:58:44 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot-core"
|
2021-02-22 00:37:28 +00:00
|
|
|
version = "0.1.6"
|
2017-08-03 18:58:44 +00:00
|
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
|
|
build = "build.rs"
|
2020-11-26 19:31:51 +00:00
|
|
|
description = "The core functionality provided by librespot"
|
|
|
|
license = "MIT"
|
2020-11-26 19:30:37 +00:00
|
|
|
repository = "https://github.com/librespot-org/librespot"
|
2020-01-17 18:09:10 +00:00
|
|
|
edition = "2018"
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
[dependencies.librespot-protocol]
|
|
|
|
path = "../protocol"
|
2021-02-22 00:37:28 +00:00
|
|
|
version = "0.1.6"
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-01-21 20:49:39 +00:00
|
|
|
aes = "0.6"
|
2020-11-27 07:02:53 +00:00
|
|
|
base64 = "0.13"
|
2021-01-21 20:49:39 +00:00
|
|
|
byteorder = "1.4"
|
|
|
|
bytes = "1.0"
|
2021-02-10 21:54:35 +00:00
|
|
|
futures-core = { version = "0.3", default-features = false }
|
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["alloc", "bilock", "unstable", "sink"] }
|
2021-02-13 18:10:34 +00:00
|
|
|
hmac = "0.10"
|
2019-07-08 08:08:32 +00:00
|
|
|
httparse = "1.3"
|
2021-03-17 20:24:28 +00:00
|
|
|
http = "0.2"
|
2021-02-10 21:50:08 +00:00
|
|
|
hyper = { version = "0.14", optional = true, features = ["client", "tcp", "http1"] }
|
2021-03-17 20:24:28 +00:00
|
|
|
hyper-proxy = { version = "0.9.1", optional = true, default-features = false }
|
2019-07-08 08:08:32 +00:00
|
|
|
log = "0.4"
|
2020-11-27 05:54:15 +00:00
|
|
|
num-bigint = "0.3"
|
2019-07-08 08:08:32 +00:00
|
|
|
num-integer = "0.1"
|
|
|
|
num-traits = "0.2"
|
2021-01-21 20:49:39 +00:00
|
|
|
once_cell = "1.5.2"
|
2021-02-10 21:54:35 +00:00
|
|
|
pbkdf2 = { version = "0.7", default-features = false, features = ["hmac"] }
|
2020-07-22 10:47:25 +00:00
|
|
|
protobuf = "~2.14.0"
|
2021-02-10 21:54:35 +00:00
|
|
|
rand = "0.8"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2019-03-15 14:50:15 +00:00
|
|
|
serde_json = "1.0"
|
2021-02-13 18:10:34 +00:00
|
|
|
sha-1 = "0.9"
|
2017-08-03 20:22:08 +00:00
|
|
|
shannon = "0.2.0"
|
2021-02-13 10:53:23 +00:00
|
|
|
thiserror = "1"
|
2021-02-10 21:54:35 +00:00
|
|
|
tokio = { version = "1.0", features = ["io-util", "net", "rt", "sync"] }
|
|
|
|
tokio-stream = "0.1"
|
2021-01-21 20:49:39 +00:00
|
|
|
tokio-util = { version = "0.6", features = ["codec"] }
|
2021-02-22 10:26:12 +00:00
|
|
|
url = "2.1"
|
2021-03-06 00:29:08 +00:00
|
|
|
uuid = { version = "0.8", default-features = false, features = ["v4"] }
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
[build-dependencies]
|
2021-02-10 21:54:35 +00:00
|
|
|
rand = "0.8"
|
2019-07-09 16:32:04 +00:00
|
|
|
vergen = "3.0.4"
|
2021-01-22 21:32:45 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-30 12:53:44 +00:00
|
|
|
env_logger = "*"
|
2021-02-10 21:50:08 +00:00
|
|
|
tokio = {version = "1.0", features = ["macros"] }
|
|
|
|
|
|
|
|
[features]
|
2021-03-17 20:24:28 +00:00
|
|
|
apresolve = ["hyper", "hyper-proxy"]
|