refactor(backend): secure xmlrpc with serde and quick-xml

This commit is contained in:
spinline
2026-02-03 18:06:55 +03:00
parent 8b9b51f270
commit 0220320ea4
2 changed files with 220 additions and 147 deletions

View File

@@ -15,7 +15,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tokio-stream = "0.1"
bytes = "1"
futures = "0.3"
quick-xml = { version = "0.31", features = ["serialize"] }
quick-xml = { version = "0.31", features = ["serde", "serialize"] }
# We might need `tokio-util` for codecs if we implement SCGI manually
tokio-util = { version = "0.7", features = ["codec", "io"] }
clap = { version = "4.4", features = ["derive"] }