librespot/discovery/Cargo.toml

39 lines
949 B
TOML
Raw Normal View History

2021-02-28 23:10:13 +00:00
[package]
name = "librespot-discovery"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
2021-02-28 23:10:13 +00:00
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery logic for librespot"
license = "MIT"
repository = "https://github.com/librespot-org/librespot"
edition = "2018"
[dependencies]
2022-01-08 19:51:51 +00:00
aes = { version = "0.7", features = ["ctr"] }
2021-02-28 23:10:13 +00:00
base64 = "0.13"
cfg-if = "1.0"
2021-12-26 23:21:42 +00:00
dns-sd = { version = "0.1.3", optional = true }
2021-02-28 23:10:13 +00:00
form_urlencoded = "1.0"
futures-core = "0.3"
futures-util = "0.3"
2021-02-28 23:10:13 +00:00
hmac = "0.11"
hyper = { version = "0.14", features = ["http1", "server", "tcp"] }
2021-02-28 23:10:13 +00:00
libmdns = "0.6"
log = "0.4"
rand = "0.8"
serde_json = "1.0.25"
sha-1 = "0.9"
thiserror = "1.0"
tokio = { version = "1.0", features = ["parking_lot", "sync", "rt"] }
2021-02-28 23:10:13 +00:00
[dependencies.librespot-core]
path = "../core"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
2021-02-28 23:10:13 +00:00
2021-03-12 15:39:58 +00:00
[dev-dependencies]
futures = "0.3"
hex = "0.4"
tokio = { version = "1.0", features = ["macros", "parking_lot", "rt"] }
2021-03-12 15:39:58 +00:00
2021-02-28 23:10:13 +00:00
[features]
2021-12-26 23:47:17 +00:00
with-dns-sd = ["dns-sd", "librespot-core/with-dns-sd"]