diff --git a/Cargo.toml b/Cargo.toml index d476db0..fc03f24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-valid" -version = "0.19.0" +version = "0.20.0" description = "Provides validation extractors for your Axum application, allowing you to validate data using validator, garde, validify or all of them." authors = ["GengTeng "] license = "MIT" @@ -25,7 +25,7 @@ edition = "2021" features = ["full", "aide"] [dependencies] -axum = { version = "0.7.3", default-features = false } +axum = { version = "0.7.5", default-features = false } garde = { version = "0.20.0", optional = true } validator = { version = "0.18.1", optional = true } validify = { version = "1.4.0", optional = true } @@ -36,24 +36,24 @@ default-features = false optional = true [dependencies.axum-serde] -version = "0.5.0" +version = "0.6.1" optional = true [dependencies.axum_typed_multipart] -version = "0.11.0" +version = "0.12.1" optional = true [dependencies.serde] -version = "1.0.195" +version = "1.0.210" optional = true [dependencies.aide] -version = "0.13.1" +version = "0.13.4" optional = true [dev-dependencies] -anyhow = "1.0.75" -axum = { version = "0.7.1", features = ["macros"] } +anyhow = "1.0.87" +axum = { version = "0.7.5", features = ["macros"] } tokio = { version = "1.34.0", features = ["full"] } reqwest = { version = "0.12.3", features = ["json", "multipart"] } serde = { version = "1.0.195", features = ["derive"] } @@ -61,7 +61,7 @@ validator = { version = "0.18.0", features = ["derive"] } garde = { version = "0.20.0", features = ["serde", "derive"] } serde_json = "1.0.108" serde_yaml = "0.9.27" -quick-xml = { version = "0.33.0", features = ["serialize"] } +quick-xml = { version = "0.36.1", features = ["serialize"] } ciborium = { version = "0.2.2" } toml = "0.8.8" mime = "0.3.17" diff --git a/README.md b/README.md index 56cec77..5d53701 100644 --- a/README.md +++ b/README.md @@ -442,7 +442,7 @@ Current module documentation predominantly showcases `Valid` examples, the usage | into_json | Validation errors will be serialized into JSON format and returned as the HTTP body | N/A | ❌ | ✅ | ✅ | | full_validator | Enables `validator`, `all_types`, `422` and `into_json` | N/A | ❌ | ✅ | ✅ | | full_garde | Enables `garde`, `all_types`, `422` and `into_json`. Consider using `default-features = false` to exclude default `validator` support | N/A | ❌ | ✅ | ✅ | -| full_garde | Enables `validify`, `all_types`, `422` and `into_json`. Consider using `default-features = false` to exclude default `validator` support | N/A | ❌ | ✅ | ✅ | +| full_validify | Enables `validify`, `all_types`, `422` and `into_json`. Consider using `default-features = false` to exclude default `validator` support | N/A | ❌ | ✅ | ✅ | | full | Enables all features above | N/A | ❌ | ✅ | ✅ | | aide | Enables support for `aide` | N/A | ❌ | ❌ | ❌ |