librespot/connect/Cargo.toml

46 lines
1 KiB
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-05-04 12:05:13 +00:00
version = "0.2.0"
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]
2021-02-13 18:10:34 +00:00
aes-ctr = "0.6"
base64 = "0.13"
2021-03-18 16:51:50 +00:00
form_urlencoded = "1.0"
futures-core = "0.3"
futures-util = { version = "0.3.5", default_features = false }
2021-05-01 08:46:34 +00:00
hmac = "0.11"
hyper = { version = "0.14", features = ["server", "http1", "tcp"] }
libmdns = "0.6"
2019-07-08 08:08:32 +00:00
log = "0.4"
2021-05-04 11:57:05 +00:00
protobuf = "2.14.0"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.25"
2021-02-13 18:10:34 +00:00
sha-1 = "0.9"
tokio = { version = "1.0", features = ["macros", "rt", "sync"] }
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 }
[dependencies.librespot-core]
path = "../core"
2021-05-04 12:05:13 +00:00
version = "0.2.0"
[dependencies.librespot-playback]
path = "../playback"
2021-05-04 12:05:13 +00:00
version = "0.2.0"
[dependencies.librespot-protocol]
path = "../protocol"
2021-05-04 12:05:13 +00:00
version = "0.2.0"
2021-01-23 22:21:42 +00:00
2018-02-06 00:00:00 +00:00
[features]
with-dns-sd = ["dns-sd"]