2018-02-06 00:00:00 +00:00
|
|
|
[package]
|
2018-02-11 15:57:55 +00:00
|
|
|
name = "librespot-connect"
|
2022-07-30 20:28:12 +00:00
|
|
|
version = "0.5.0-dev"
|
2024-08-27 21:16:48 +00:00
|
|
|
rust-version = "1.74"
|
2018-02-06 00:00:00 +00:00
|
|
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
2020-11-26 19:31:51 +00:00
|
|
|
description = "The discovery and Spotify Connect logic for librespot"
|
|
|
|
license = "MIT"
|
2020-11-26 19:30:37 +00:00
|
|
|
repository = "https://github.com/librespot-org/librespot"
|
2022-08-02 19:42:38 +00:00
|
|
|
edition = "2021"
|
2018-02-06 00:00:00 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-03-18 16:51:50 +00:00
|
|
|
form_urlencoded = "1.0"
|
2022-01-08 20:21:31 +00:00
|
|
|
futures-util = "0.3"
|
2019-07-08 08:08:32 +00:00
|
|
|
log = "0.4"
|
2023-01-17 20:46:14 +00:00
|
|
|
protobuf = "3"
|
2021-02-21 18:38:40 +00:00
|
|
|
rand = "0.8"
|
2021-02-21 18:38:44 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2021-02-28 23:10:13 +00:00
|
|
|
serde_json = "1.0"
|
2021-12-26 20:18:42 +00:00
|
|
|
thiserror = "1.0"
|
2022-01-08 22:28:46 +00:00
|
|
|
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }
|
|
|
|
tokio-stream = "0.1"
|
2018-02-06 00:00:00 +00:00
|
|
|
|
2021-02-21 18:38:44 +00:00
|
|
|
[dependencies.librespot-core]
|
|
|
|
path = "../core"
|
2022-07-30 20:28:12 +00:00
|
|
|
version = "0.5.0-dev"
|
2021-02-21 18:38:44 +00:00
|
|
|
|
|
|
|
[dependencies.librespot-playback]
|
|
|
|
path = "../playback"
|
2022-07-30 20:28:12 +00:00
|
|
|
version = "0.5.0-dev"
|
2021-02-21 18:38:44 +00:00
|
|
|
|
|
|
|
[dependencies.librespot-protocol]
|
|
|
|
path = "../protocol"
|
2022-07-30 20:28:12 +00:00
|
|
|
version = "0.5.0-dev"
|