2018-02-06 00:00:00 +00:00
|
|
|
[package]
|
2018-02-11 15:57:55 +00:00
|
|
|
name = "librespot-connect"
|
2018-02-06 00:00:00 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
|
|
|
|
|
|
[dependencies.librespot-core]
|
|
|
|
path = "../core"
|
2018-02-11 15:57:55 +00:00
|
|
|
[dependencies.librespot-playback]
|
|
|
|
path = "../playback"
|
|
|
|
[dependencies.librespot-protocol]
|
|
|
|
path = "../protocol"
|
2018-02-06 00:00:00 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
base64 = "0.5.0"
|
|
|
|
futures = "0.1.8"
|
|
|
|
hyper = "0.11.2"
|
|
|
|
log = "0.3.5"
|
|
|
|
num-bigint = "0.1.35"
|
2018-09-28 10:02:38 +00:00
|
|
|
protobuf = "2.0.5"
|
2019-01-17 07:59:25 +00:00
|
|
|
rand = "0.6"
|
2019-03-15 14:50:15 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2018-02-06 00:00:00 +00:00
|
|
|
tokio-core = "0.1.2"
|
|
|
|
url = "1.3"
|
2018-10-15 02:07:58 +00:00
|
|
|
sha-1 = "0.8.0"
|
|
|
|
hmac = "0.7.0"
|
2018-12-06 09:49:23 +00:00
|
|
|
aes-ctr = "0.3.0"
|
2018-10-15 02:07:58 +00:00
|
|
|
block-modes = "0.2.0"
|
2018-02-06 00:00:00 +00:00
|
|
|
|
|
|
|
dns-sd = { version = "0.1.3", optional = true }
|
|
|
|
mdns = { git = "https://github.com/plietar/rust-mdns", optional = true }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["mdns"]
|
|
|
|
with-dns-sd = ["dns-sd"]
|