Upgrade validator to 0.19.0

So that we get the fix for validating struct with multiple members laid out in https://github.com/Keats/validator/issues/319, and fixed in https://github.com/Keats/validator/pull/321
This commit is contained in:
Edgar Gonzalez
2024-11-05 15:10:02 -05:00
parent 20886c16d8
commit b76d4ef427

View File

@@ -27,7 +27,7 @@ features = ["full", "aide"]
[dependencies]
axum = { version = "0.7.5", default-features = false }
garde = { version = "0.20.0", optional = true }
validator = { version = "0.18.1", optional = true }
validator = { version = "0.19.0", optional = true }
validify = { version = "1.4.0", optional = true }
[dependencies.axum-extra]
@@ -57,7 +57,7 @@ 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"] }
validator = { version = "0.19.0", features = ["derive"] }
garde = { version = "0.20.0", features = ["serde", "derive"] }
serde_json = "1.0.108"
serde_yaml = "0.9.27"