2026-02-26 19:58:37 +01:00
|
|
|
[package]
|
|
|
|
|
name = "pmowebrenderer"
|
|
|
|
|
version = "0.1.0"
|
2026-04-05 14:06:32 +02:00
|
|
|
edition = "2024"
|
2026-02-26 19:58:37 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
pmomediarenderer = { path = "../pmomediarenderer" }
|
|
|
|
|
pmoserver = { path = "../pmoserver", optional = true }
|
|
|
|
|
pmocontrol = { path = "../pmocontrol", optional = true }
|
|
|
|
|
pmoconfig = { path = "../pmoconfig" }
|
|
|
|
|
|
2026-02-09 07:18:13 +01:00
|
|
|
# Async runtime
|
|
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2026-02-26 19:58:37 +01:00
|
|
|
tokio-util = { workspace = true }
|
2026-02-09 07:18:13 +01:00
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
|
2026-02-26 19:58:37 +01:00
|
|
|
# HTTP
|
2026-04-05 10:52:54 +02:00
|
|
|
axum = "0.8.4"
|
|
|
|
|
axum-extra = "0.12"
|
|
|
|
|
tower-http = "0.6"
|
2026-02-09 07:18:13 +01:00
|
|
|
futures = "0.3"
|
2026-02-26 19:58:37 +01:00
|
|
|
bytes = "1.0"
|
2026-02-09 07:18:13 +01:00
|
|
|
|
|
|
|
|
# Serialization
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
|
|
|
|
|
# Utilities
|
|
|
|
|
parking_lot = "0.12"
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
2026-04-05 21:20:51 +02:00
|
|
|
pmoserver = ["dep:pmoserver", "dep:pmocontrol", "pmomediarenderer/pmoserver"]
|