2018-02-06 00:00:00 +00:00
|
|
|
[package]
|
2018-02-11 15:57:55 +00:00
|
|
|
name = "librespot-connect"
|
2021-02-22 00:37:28 +00:00
|
|
|
version = "0.1.6"
|
2018-02-06 00:00:00 +00:00
|
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
2020-11-26 19:31:51 +00:00
|
|
|
description = "The discovery and Spotify Connect logic for 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"
|
2018-02-06 00:00:00 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-02-13 18:10:34 +00:00
|
|
|
aes-ctr = "0.6"
|
2020-11-27 07:02:53 +00:00
|
|
|
base64 = "0.13"
|
2021-03-18 16:51:50 +00:00
|
|
|
form_urlencoded = "1.0"
|
2021-02-21 18:38:44 +00:00
|
|
|
futures-core = "0.3"
|
2021-05-01 08:40:52 +00:00
|
|
|
futures-util = { version = "0.3.5", default_features = false }
|
2021-05-01 08:46:34 +00:00
|
|
|
hmac = "0.11"
|
2021-02-21 18:38:49 +00:00
|
|
|
hyper = { version = "0.14", features = ["server", "http1", "tcp"] }
|
2021-04-09 14:38:43 +00:00
|
|
|
libmdns = "0.6"
|
2019-07-08 08:08:32 +00:00
|
|
|
log = "0.4"
|
2020-07-22 10:47:25 +00:00
|
|
|
protobuf = "~2.14.0"
|
2021-02-21 18:38:40 +00:00
|
|
|
rand = "0.8"
|
2021-02-21 18:38:44 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-05-01 08:40:52 +00:00
|
|
|
serde_json = "1.0.25"
|
2021-02-13 18:10:34 +00:00
|
|
|
sha-1 = "0.9"
|
2021-02-21 18:38:49 +00:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt", "sync"] }
|
2021-05-01 08:40:52 +00:00
|
|
|
tokio-stream = "0.1.1"
|
2021-02-22 10:26:12 +00:00
|
|
|
url = "2.1"
|
2018-02-06 00:00:00 +00:00
|
|
|
|
|
|
|
dns-sd = { version = "0.1.3", optional = true }
|
|
|
|
|
2021-02-21 18:38:44 +00:00
|
|
|
[dependencies.librespot-core]
|
|
|
|
path = "../core"
|
|
|
|
version = "0.1.6"
|
|
|
|
|
|
|
|
[dependencies.librespot-playback]
|
|
|
|
path = "../playback"
|
|
|
|
version = "0.1.6"
|
|
|
|
|
|
|
|
[dependencies.librespot-protocol]
|
|
|
|
path = "../protocol"
|
|
|
|
version = "0.1.6"
|
2021-01-23 22:21:42 +00:00
|
|
|
|
2018-02-06 00:00:00 +00:00
|
|
|
[features]
|
|
|
|
with-dns-sd = ["dns-sd"]
|
2021-02-21 18:38:44 +00:00
|
|
|
|