axum: Use serde_html_form for Query and Form (#3594)

This commit is contained in:
Jonas Platte
2025-12-26 13:03:42 +01:00
committed by GitHub
parent 061666a111
commit cae6bc3709
13 changed files with 73 additions and 262 deletions
Generated
+15 -2
View File
@@ -138,9 +138,9 @@ dependencies = [
"reqwest",
"serde",
"serde_core",
"serde_html_form 0.3.2",
"serde_json",
"serde_path_to_error",
"serde_urlencoded",
"sha1",
"sync_wrapper",
"time",
@@ -206,7 +206,7 @@ dependencies = [
"rustversion",
"serde",
"serde_core",
"serde_html_form",
"serde_html_form 0.2.7",
"serde_json",
"serde_path_to_error",
"tempfile",
@@ -1500,6 +1500,19 @@ dependencies = [
"serde",
]
[[package]]
name = "serde_html_form"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2acf96b1d9364968fce46ebb548f1c0e1d7eceae27bdff73865d42e6c7369d94"
dependencies = [
"form_urlencoded",
"indexmap",
"itoa",
"ryu",
"serde_core",
]
[[package]]
name = "serde_json"
version = "1.0.134"