librespot/connect/Cargo.toml

39 lines
912 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-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>"]
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-03-18 16:51:50 +00:00
form_urlencoded = "1.0"
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"
rand = "0.8"
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"] }
tokio-stream = "0.1.1"
2018-02-06 00:00:00 +00:00
[dependencies.librespot-core]
path = "../core"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
[dependencies.librespot-playback]
path = "../playback"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
[dependencies.librespot-protocol]
path = "../protocol"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
[dependencies.librespot-discovery]
path = "../discovery"
2021-10-24 18:12:33 +00:00
version = "0.3.1"
[features]
with-dns-sd = ["librespot-discovery/with-dns-sd"]