diff --git a/Cargo.toml b/Cargo.toml index 73a37e4..4d84fa8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-serde" -version = "0.5.0" +version = "0.6.0" description = "Provides multiple serde-based extractors / responses for the Axum web framework, also offers a macro to easily customize extractors / responses." authors = ["GengTeng "] license = "MIT" @@ -24,13 +24,13 @@ edition = "2021" features = ["full"] [dependencies] -http = "1.0.0" +http = "1.1.0" serde = "1.0.197" mime = "0.3.17" serde_yaml = { version = "0.9.33", optional = true } rmp-serde = { version = "1.3.0", optional = true } toml_ = { package = "toml", version = "0.8.14", optional = true } -quick-xml = { version = "0.33.0", optional = true, features = ["serialize"] } +quick-xml = { version = "0.36.1", optional = true, features = ["serialize"] } sonic-rs = { version = "0.3.7", optional = true } ciborium = { version = "0.2.2", optional = true } axum-core = "0.4.3"