mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
33 lines
688 B
TOML
33 lines
688 B
TOML
[package]
|
|
name = "librespot-connect"
|
|
version = "0.1.0"
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
|
|
|
[dependencies.librespot-core]
|
|
path = "../core"
|
|
[dependencies.librespot-playback]
|
|
path = "../playback"
|
|
[dependencies.librespot-protocol]
|
|
path = "../protocol"
|
|
|
|
[dependencies]
|
|
base64 = "0.5.0"
|
|
futures = "0.1.8"
|
|
hyper = "0.11.2"
|
|
log = "0.3.5"
|
|
num-bigint = "0.1.35"
|
|
protobuf = "1.1"
|
|
rand = "0.3.13"
|
|
rust-crypto = "0.2.36"
|
|
serde = "0.9.6"
|
|
serde_derive = "0.9.6"
|
|
serde_json = "0.9.5"
|
|
tokio-core = "0.1.2"
|
|
url = "1.3"
|
|
|
|
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"]
|