From 42c7e55f8ba702d7a15f2418d1cc4bb801245722 Mon Sep 17 00:00:00 2001 From: somehowchris Date: Tue, 21 Mar 2023 16:40:41 +0100 Subject: [PATCH] chore: update versioning to 0.1.4 --- Cargo.toml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aa58f8c..6edd466 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket-validation" -version = "0.1.3" +version = "0.1.4" edition = "2021" license = "MIT" readme = "README.md" @@ -16,8 +16,10 @@ description = "Rocket Guards to support validation using validator" path = "src/lib.rs" [dependencies] -rocket = { version = "0.5.0-rc.2", default-features = false, features = ["json"] } -validator = { version="0.16.0", features = ["derive"] } +rocket = { version = "0.5.0-rc.2", default-features = false, features = [ + "json", +] } +validator = { version = "0.16.0", features = ["derive"] } [[example]] name = "json-validation" @@ -29,4 +31,4 @@ path = "examples/query-validation/src/main.rs" [[example]] name = "form-validation" -path = "examples/form-validation/src/main.rs" \ No newline at end of file +path = "examples/form-validation/src/main.rs"