Files

51 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2025-09-16 21:07:44 +02:00
[package]
name = "pmoupnp"
version = "0.1.0"
edition = "2024"
[dependencies]
pmoconfig = { path = "../pmoconfig" }
2025-10-01 20:49:50 +02:00
pmodidl = { path = "../pmodidl"}
pmoutils = { version = "0.1.2", registry = "pmo" }
2025-10-06 20:24:04 +02:00
pmoserver = { path = "../pmoserver" }
2025-10-17 23:45:01 +02:00
pmocovers = { path = "../pmocovers", features = ["pmoserver"] }
pmoaudiocache = { path = "../pmoaudiocache", features = ["pmoserver"] }
pmoplaylist = { path = "../pmoplaylist", optional = true, features = ["pmoserver"] }
2025-10-17 23:45:01 +02:00
pmocache = { path = "../pmocache" }
async-trait = { workspace = true }
async-recursion = "1.1"
2025-09-16 21:07:44 +02:00
url = "2.5.7"
uuid = "1.18.1"
hex = "0.4.3"
base64 = "0.22.1"
thiserror = { workspace = true }
anyhow = { workspace = true }
xmltree = "0.11.0"
axum = { version = "0.8.4", features = ["ws"] }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync"] }
serde = { workspace = true }
serde_json = { workspace = true }
quick-xml = { workspace = true }
chrono = { version = "0.4.42", features = ["serde"] }
once_cell = "1.20"
parking_lot = "0.12"
tracing = { workspace = true }
2025-10-18 20:25:56 +02:00
tracing-subscriber = "0.3"
2025-10-01 20:49:50 +02:00
bevy_reflect = "0.17.1"
bevy_reflect_derive = "0.17.1"
2025-10-05 14:35:44 +02:00
reqwest = "0.12.23"
2025-10-17 23:45:01 +02:00
utoipa = { version = "5.3", features = ["axum_extras"] }
2025-11-27 09:38:11 +01:00
socket2 = "0.5"
get_if_addrs = "0.5"
serde_yaml = { workspace = true }
2025-11-27 09:38:11 +01:00
[features]
default = ["server"]
server = ["pmoplaylist"]
paradise = []
qobuz = []
2025-11-27 09:38:11 +01:00
[target.'cfg(unix)'.dependencies]
libc = "0.2"