librespot/connect/Cargo.toml

45 lines
983 B
TOML
Raw Normal View History

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>"]
description = "The discovery and Spotify Connect logic for librespot"
license = "MIT"
repository = "https://github.com/librespot-org/librespot"
edition = "2018"
2018-02-06 00:00:00 +00:00
[dependencies.librespot-core]
path = "../core"
2021-02-22 00:37:28 +00:00
version = "0.1.6"
2018-02-11 15:57:55 +00:00
[dependencies.librespot-playback]
path = "../playback"
2021-02-22 00:37:28 +00:00
version = "0.1.6"
2018-02-11 15:57:55 +00:00
[dependencies.librespot-protocol]
path = "../protocol"
2021-02-22 00:37:28 +00:00
version = "0.1.6"
2018-02-06 00:00:00 +00:00
[dependencies]
2021-02-13 18:10:34 +00:00
aes-ctr = "0.6"
base64 = "0.13"
2021-02-13 18:10:34 +00:00
block-modes = "0.7"
2021-02-19 23:17:18 +00:00
futures = "0.3"
2021-02-13 18:10:34 +00:00
hmac = "0.10"
2021-02-19 23:17:18 +00:00
hyper = { version = "0.14", features = ["server", "http1"] }
2019-07-08 08:08:32 +00:00
log = "0.4"
num-bigint = "0.3"
protobuf = "~2.14.0"
2019-07-08 08:08:32 +00:00
rand = "0.7"
2019-03-15 14:50:15 +00:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2021-02-13 18:10:34 +00:00
sha-1 = "0.9"
2021-02-19 23:17:18 +00:00
tokio = { version = "1.0", features = ["macros"] }
2019-07-08 08:08:32 +00:00
url = "1.7"
2018-02-06 00:00:00 +00:00
dns-sd = { version = "0.1.3", optional = true }
2021-02-19 23:17:18 +00:00
libmdns = { version = "0.6", optional = true }
2018-02-06 00:00:00 +00:00
2021-01-23 22:21:42 +00:00
2018-02-06 00:00:00 +00:00
[features]
2019-11-06 15:39:31 +00:00
default = ["libmdns"]
2018-02-06 00:00:00 +00:00
with-dns-sd = ["dns-sd"]