feat: add support extractors from axum-serde

This commit is contained in:
gengteng
2023-11-30 15:52:41 +08:00
parent 459f7a92e1
commit af4abcfef4

View File

@@ -46,17 +46,17 @@ optional = true
[dev-dependencies] [dev-dependencies]
anyhow = "1.0.72" anyhow = "1.0.72"
axum = { version = "0.7.1", features = ["macros"] } axum = { version = "0.7.1", features = ["macros"] }
tokio = { version = "1.33.0", features = ["full"] } tokio = { version = "1.34.0", features = ["full"] }
hyper = { version = "0.14.27", features = ["full"] } hyper = { version = "0.14.27", features = ["full"] }
reqwest = { version = "0.11.22", features = ["json", "multipart"] } reqwest = { version = "0.11.22", features = ["json", "multipart"] }
serde = { version = "1.0.189", features = ["derive"] } serde = { version = "1.0.193", features = ["derive"] }
validator = { version = "0.16.1", features = ["derive"] } validator = { version = "0.16.1", features = ["derive"] }
serde_json = "1.0.107" serde_json = "1.0.108"
serde_yaml = "0.9.27" serde_yaml = "0.9.27"
quick-xml = { version = "0.31.0", features = ["serialize"] } quick-xml = { version = "0.31.0", features = ["serialize"] }
toml = "0.8.8" toml = "0.8.8"
mime = "0.3.17" mime = "0.3.17"
prost = "0.12.1" prost = "0.12.3"
once_cell = "1.18.0" once_cell = "1.18.0"
rmp-serde = "1.1.2" rmp-serde = "1.1.2"