Switch serde dependency to serde_core (#3477)

This commit is contained in:
Jonas Platte
2025-09-14 08:49:07 +02:00
committed by GitHub
parent 94af9c3262
commit 4ab8df5e42
19 changed files with 74 additions and 59 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ use axum::{
extract::{rejection::PathRejection, FromRequestParts, Path},
RequestPartsExt,
};
use serde::de::DeserializeOwned;
use serde_core::de::DeserializeOwned;
/// Extractor that extracts path arguments the same way as [`Path`], except if there aren't any.
///