From af4abcfef42481e6a7589da27592ad28eb055176 Mon Sep 17 00:00:00 2001 From: gengteng Date: Thu, 30 Nov 2023 15:52:41 +0800 Subject: [PATCH] feat: add support extractors from axum-serde --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f7902b6..06d70d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,17 +46,17 @@ optional = true [dev-dependencies] anyhow = "1.0.72" 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"] } 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"] } -serde_json = "1.0.107" +serde_json = "1.0.108" serde_yaml = "0.9.27" quick-xml = { version = "0.31.0", features = ["serialize"] } toml = "0.8.8" mime = "0.3.17" -prost = "0.12.1" +prost = "0.12.3" once_cell = "1.18.0" rmp-serde = "1.1.2"