- Add `SyncCancelled` error variant for non-fatal cancellations - Refactor queue sync to async via `MusicQueue::schedule_sync()` - Extract browse+conversion into internal helper - Update all `QueueBackend::sync_queue()` signatures to accept cancel token and on_ready callback - Implement early-start logic (on pivot preservation or first insert) - Add `QueueReadyToPlay` and ‘ QueueSyncCancelled➔ SSE events - Replace blocking `refresh_attached_queue_for()` with non-blocking async dispatch in control_point.rs - Bump version to v0.3.41
27 lines
1.0 KiB
TOML
27 lines
1.0 KiB
TOML
[package]
|
|
name = "PMOMusic"
|
|
version = "0.3.41"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
pmoconfig = { path = "../pmoconfig" }
|
|
pmoupnp = { path = "../pmoupnp"}
|
|
pmomediarenderer = { path = "../pmomediarenderer" }
|
|
pmomediaserver = { path = "../pmomediaserver", features = ["qobuz", "paradise", "paradise-api", "radiofrance", "api"] }
|
|
pmosource = { path = "../pmosource", features = ["server"] }
|
|
pmoserver = { path = "../pmoserver" }
|
|
pmocovers = { path = "../pmocovers", features = ["pmoserver"] }
|
|
pmoaudiocache = { path = "../pmoaudiocache", features = ["pmoserver"]}
|
|
pmoaudio-ext = { path = "../pmoaudio-ext", features = ["all"] }
|
|
pmoapp = { path = "../pmoapp", features = ["pmoserver"] }
|
|
pmocontrol = { path = "../pmocontrol", features = ["pmoserver"] }
|
|
pmowebrenderer = { path = "../pmowebrenderer", features = ["pmoserver"] }
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync", "time", "signal"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = "0.3.20"
|
|
axum = "0.8.4"
|
|
serde_json = "1.0.145"
|
|
utoipa = "5.4"
|
|
console-subscriber = "0.4.1"
|