2018-02-06 00:00:00 +00:00
|
|
|
[package]
|
2018-02-11 15:57:55 +00:00
|
|
|
name = "librespot-connect"
|
2021-10-24 18:12:33 +00:00
|
|
|
version = "0.3.1"
|
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-03-18 16:51:50 +00:00
|
|
|
form_urlencoded = "1.0"
|
2021-05-01 08:40:52 +00:00
|
|
|
futures-util = { version = "0.3.5", default_features = false }
|
2019-07-08 08:08:32 +00:00
|
|
|
log = "0.4"
|
2021-05-04 11:57:05 +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-02-28 23:10:13 +00:00
|
|
|
serde_json = "1.0"
|
|
|
|
tokio = { version = "1.0", features = ["macros", "sync"] }
|
2021-05-01 08:40:52 +00:00
|
|
|
tokio-stream = "0.1.1"
|
2018-02-06 00:00:00 +00:00
|
|
|
|
2021-02-21 18:38:44 +00:00
|
|
|
[dependencies.librespot-core]
|
|
|
|
path = "../core"
|
2021-10-24 18:12:33 +00:00
|
|
|
version = "0.3.1"
|
2021-02-21 18:38:44 +00:00
|
|
|
|
|
|
|
[dependencies.librespot-playback]
|
|
|
|
path = "../playback"
|
2021-10-24 18:12:33 +00:00
|
|
|
version = "0.3.1"
|
2021-02-21 18:38:44 +00:00
|
|
|
|
|
|
|
[dependencies.librespot-protocol]
|
|
|
|
path = "../protocol"
|
2021-10-24 18:12:33 +00:00
|
|
|
version = "0.3.1"
|
2021-05-09 08:50:15 +00:00
|
|
|
|
|
|
|
[dependencies.librespot-discovery]
|
|
|
|
path = "../discovery"
|
2021-10-24 18:12:33 +00:00
|
|
|
version = "0.3.1"
|
2021-05-09 08:50:15 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
with-dns-sd = ["librespot-discovery/with-dns-sd"]
|