2025-10-06 06:01:41 +02:00
|
|
|
[package]
|
|
|
|
|
name = "pmoserver"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-10-21 18:37:56 +02:00
|
|
|
pmoconfig = { path = "../pmoconfig", features = ["api"] }
|
2025-10-06 06:01:41 +02:00
|
|
|
|
2025-12-30 16:12:30 +01:00
|
|
|
anyhow = { workspace = true }
|
2025-10-06 06:01:41 +02:00
|
|
|
axum = "0.8.4"
|
2026-02-21 00:15:38 +01:00
|
|
|
tower = { version = "0.5", features = ["util"] }
|
2025-12-30 16:12:30 +01:00
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync", "time", "signal"] }
|
2025-10-06 06:01:41 +02:00
|
|
|
tokio-stream = "0.1"
|
2025-12-05 07:08:03 +01:00
|
|
|
tokio-util = "0.7"
|
2025-10-06 06:01:41 +02:00
|
|
|
futures-util = "0.3"
|
2025-12-30 16:12:30 +01:00
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { workspace = true }
|
2025-10-06 06:01:41 +02:00
|
|
|
futures = "0.3"
|
|
|
|
|
async-stream = "0.3.6"
|
|
|
|
|
axum-server = "0.7.2"
|
|
|
|
|
rust-embed = "8.7.2"
|
2026-04-05 10:52:54 +02:00
|
|
|
mime_guess = "2"
|
2025-10-06 06:01:41 +02:00
|
|
|
utoipa = { version = "5.4.0", features = ["axum_extras"] }
|
2025-10-21 14:21:17 +02:00
|
|
|
utoipa-swagger-ui = { version = "9.0.2", features = ["axum", "vendored"] }
|
2025-10-26 13:44:41 +01:00
|
|
|
once_cell = "1.19"
|