librespot/metadata/Cargo.toml

27 lines
572 B
TOML
Raw Normal View History

2017-08-03 19:10:48 +00:00
[package]
name = "librespot-metadata"
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"
2017-08-03 19:10:48 +00:00
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
license = "MIT"
repository = "https://github.com/librespot-org/librespot"
2022-08-02 19:42:38 +00:00
edition = "2021"
2017-08-03 19:10:48 +00:00
[dependencies]
2021-01-21 21:07:16 +00:00
async-trait = "0.1"
byteorder = "1"
2022-01-08 20:21:31 +00:00
bytes = "1"
2019-12-16 11:47:52 +00:00
log = "0.4"
protobuf = "2"
thiserror = "1"
uuid = { version = "1", default-features = false }
2017-08-03 19:10:48 +00:00
[dependencies.librespot-core]
path = "../core"
2022-07-30 20:28:12 +00:00
version = "0.5.0-dev"
2017-08-03 19:10:48 +00:00
[dependencies.librespot-protocol]
path = "../protocol"
2022-07-30 20:28:12 +00:00
version = "0.5.0-dev"