2017-08-03 18:58:44 +00:00
|
|
|
[package]
|
|
|
|
name = "librespot-core"
|
2021-10-24 18:12:33 +00:00
|
|
|
version = "0.3.1"
|
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-10-24 18:12:33 +00:00
|
|
|
version = "0.3.1"
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-08 19:51:51 +00:00
|
|
|
aes = "0.7"
|
2020-11-27 07:02:53 +00:00
|
|
|
base64 = "0.13"
|
2021-01-21 20:49:39 +00:00
|
|
|
byteorder = "1.4"
|
2021-11-26 22:21:27 +00:00
|
|
|
bytes = "1"
|
2021-12-16 21:42:37 +00:00
|
|
|
chrono = "0.4"
|
2021-12-26 23:21:42 +00:00
|
|
|
dns-sd = { version = "0.1.3", optional = true }
|
2021-03-18 16:51:50 +00:00
|
|
|
form_urlencoded = "1.0"
|
2021-02-10 21:54:35 +00:00
|
|
|
futures-core = { version = "0.3", default-features = false }
|
2021-12-26 21:55:45 +00:00
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["alloc", "bilock", "sink", "unstable"] }
|
2021-05-01 08:46:34 +00:00
|
|
|
hmac = "0.11"
|
2019-07-08 08:08:32 +00:00
|
|
|
httparse = "1.3"
|
2021-03-17 20:24:28 +00:00
|
|
|
http = "0.2"
|
2021-12-26 21:55:45 +00:00
|
|
|
hyper = { version = "0.14", features = ["client", "http1", "http2", "tcp"] }
|
2021-11-26 22:21:27 +00:00
|
|
|
hyper-proxy = { version = "0.9.1", default-features = false, features = ["rustls"] }
|
|
|
|
hyper-rustls = { version = "0.22", default-features = false, features = ["native-tokio"] }
|
2019-07-08 08:08:32 +00:00
|
|
|
log = "0.4"
|
2021-06-22 21:57:38 +00:00
|
|
|
num = "0.4"
|
2021-03-18 16:51:50 +00:00
|
|
|
num-bigint = { version = "0.4", features = ["rand"] }
|
2021-06-22 21:57:38 +00:00
|
|
|
num-derive = "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-12-26 21:55:45 +00:00
|
|
|
parking_lot = { version = "0.11", features = ["deadlock_detection"] }
|
2021-05-01 08:46:34 +00:00
|
|
|
pbkdf2 = { version = "0.8", default-features = false, features = ["hmac"] }
|
2021-03-19 22:09:38 +00:00
|
|
|
priority-queue = "1.1"
|
2021-05-04 11:57:05 +00:00
|
|
|
protobuf = "2.14.0"
|
2021-12-26 21:55:45 +00:00
|
|
|
quick-xml = { version = "0.22", features = ["serialize"] }
|
2021-02-10 21:54:35 +00:00
|
|
|
rand = "0.8"
|
2021-12-16 21:42:37 +00:00
|
|
|
rustls = "0.19"
|
|
|
|
rustls-native-certs = "0.5"
|
2021-02-10 21:54:35 +00:00
|
|
|
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-12-16 21:42:37 +00:00
|
|
|
thiserror = "1.0"
|
2021-12-26 21:55:45 +00:00
|
|
|
tokio = { version = "1.5", features = ["io-util", "macros", "net", "parking_lot", "rt", "sync", "time"] }
|
2021-05-01 08:40:52 +00:00
|
|
|
tokio-stream = "0.1.1"
|
2021-05-22 17:05:13 +00:00
|
|
|
tokio-tungstenite = { version = "0.14", default-features = false, features = ["rustls-tls"] }
|
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-05-04 12:16:16 +00:00
|
|
|
env_logger = "0.8"
|
2021-12-26 21:55:45 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "parking_lot"] }
|
2021-12-26 23:21:42 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
with-dns-sd = ["dns-sd"]
|