librespot/connect/Cargo.toml

34 lines
794 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"
2022-07-30 20:28:12 +00:00
version = "0.5.0-dev"
2022-08-01 11:10:39 +00:00
rust-version = "1.61"
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"
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"
protobuf = "3"
rand = "0.8"
serde = { version = "1.0", features = ["derive"] }
2021-02-28 23:10:13 +00:00
serde_json = "1.0"
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
[dependencies.librespot-core]
path = "../core"
2022-07-30 20:28:12 +00:00
version = "0.5.0-dev"
[dependencies.librespot-playback]
path = "../playback"
2022-07-30 20:28:12 +00:00
version = "0.5.0-dev"
[dependencies.librespot-protocol]
path = "../protocol"
2022-07-30 20:28:12 +00:00
version = "0.5.0-dev"