forked from librespot-org/librespot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 978 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "librespot-metadata"
version = "0.8.0"
rust-version.workspace = true
authors = ["Paul Lietar <[email protected]>"]
license.workspace = true
description = "The metadata logic for librespot"
repository.workspace = true
edition.workspace = true
[features]
# Refer to the workspace Cargo.toml for the list of features
default = ["native-tls"]
# TLS backend propagation
native-tls = ["librespot-core/native-tls"]
rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
[dependencies]
librespot-core = { version = "0.8.0", path = "../core", default-features = false }
librespot-protocol = { version = "0.8.0", path = "../protocol", default-features = false }
async-trait = "0.1"
bytes = "1"
log = "0.4"
protobuf = "3.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2"
uuid = { version = "1", default-features = false }
[lints]
workspace = true