librespot/metadata/Cargo.toml
Guillaume Desmottes f72048e5e1 metadata: add lyrics
Save users from doing all the parsing themselves.
2023-01-02 19:00:10 +01:00

29 lines
642 B
TOML

[package]
name = "librespot-metadata"
version = "0.5.0-dev"
rust-version = "1.61"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
license = "MIT"
repository = "https://github.com/librespot-org/librespot"
edition = "2021"
[dependencies]
async-trait = "0.1"
byteorder = "1"
bytes = "1"
log = "0.4"
protobuf = "2"
thiserror = "1"
uuid = { version = "1", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
[dependencies.librespot-core]
path = "../core"
version = "0.5.0-dev"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.5.0-dev"