Migrate pmoutils crate to registry version 0.1.2 and update all dependencies to use the registry version instead of local path references. Remove pmoutils from Cargo.lock and Cargo.toml files where it was previously used as a local path dependency. Move ToXmlElement trait to pmodidl crate and update all usages to import from pmodidl instead of pmoutils. Fix parameter order in find_process_using_port function call.
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "pmowebrenderer"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
pmoupnp = { path = "../pmoupnp" }
|
|
pmomediarenderer = { path = "../pmomediarenderer" }
|
|
pmoserver = { path = "../pmoserver", optional = true }
|
|
pmocontrol = { path = "../pmocontrol", optional = true }
|
|
pmoconfig = { path = "../pmoconfig" }
|
|
|
|
# Audio pipeline (toujours actif — c'est le cœur du renderer)
|
|
pmoaudio-ext = { path = "../pmoaudio-ext", features = ["http-stream"] }
|
|
pmoaudio = { path = "../pmoaudio" }
|
|
pmoflac = { path = "../pmoflac" }
|
|
pmometadata = { path = "../pmometadata" }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true, features = ["full"] }
|
|
tokio-util = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
# HTTP
|
|
axum = { workspace = true }
|
|
axum-extra = { version = "0.9", features = ["typed-header"] }
|
|
tower-http = { version = "0.6", features = ["fs", "trace"] }
|
|
futures = "0.3"
|
|
reqwest = { workspace = true, features = ["stream"] }
|
|
bytes = "1.0"
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
|
|
# Utilities
|
|
uuid = { workspace = true, features = ["v4", "serde"] }
|
|
parking_lot = "0.12"
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
pmodidl = { path = "../pmodidl" }
|
|
pmoutils = { version = "0.1.2", registry = "pmo" }
|
|
|
|
[features]
|
|
default = []
|
|
pmoserver = ["dep:pmoserver", "dep:pmocontrol"]
|