Skip to content

Commit

Permalink
chore: bump dependencies and release v0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gengteng committed Sep 7, 2024
1 parent 8ed8a39 commit 20886c1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <me@gteng.org>"]
license = "MIT"
Expand All @@ -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 }
Expand All @@ -36,32 +36,32 @@ 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"] }
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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 ||||

Expand Down

0 comments on commit 20886c1

Please sign in to comment.