Create request serializer selection based on content-type header

This commit is contained in:
2025-07-16 16:40:34 +03:00
parent 14f82885c4
commit ee25d17683
14 changed files with 462 additions and 62 deletions

View File

@@ -34,5 +34,15 @@ dev = [
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"uvicorn>=0.35.0",
{ "include-group" = "all_containers" },
]
xml = ["lxml>=6.0.0", ]
msgpack = ["msgpack>=1.1.1", ]
json = ["orjson>=3.11.0", ]
all_containers = [
{ "include-group" = "xml" },
{ "include-group" = "msgpack" },
{ "include-group" = "json" },
]