diff options
| author | Vincent Prouillet | 2017-01-17 17:52:27 +0900 |
|---|---|---|
| committer | Vincent Prouillet | 2017-01-18 00:29:38 +0900 |
| commit | 6c41eadf8d2c36796c8f3436ce27abd28dfc2d63 (patch) | |
| tree | 511523329f1003723bc71659a67d0a72dee5d893 | |
| parent | b1f1b7f62e670b948c98ff9e10b7f1a1519f9edf (diff) | |
| download | validator-6c41eadf8d2c36796c8f3436ce27abd28dfc2d63.tar.bz2 | |
v0.2.0 validator
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | validator/Cargo.toml | 2 | ||||
| -rw-r--r-- | validator_derive/Cargo.toml | 5 |
3 files changed, 5 insertions, 3 deletions
@@ -154,3 +154,4 @@ if an error happened while validating the struct fields. - Remove need for `attr_literals` feature - Fix error when not having validation on each field - Add struct level validation +- Add `must_match` validator diff --git a/validator/Cargo.toml b/validator/Cargo.toml index d622f9e..a2808a4 100644 --- a/validator/Cargo.toml +++ b/validator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "validator" -version = "0.1.0" +version = "0.2.0" authors = ["Vincent Prouillet <vincent@wearewizards.io>"] license = "MIT" description = "Common validation functions (email, url, length, ...) and trait" diff --git a/validator_derive/Cargo.toml b/validator_derive/Cargo.toml index 76c5e7e..84b41dc 100644 --- a/validator_derive/Cargo.toml +++ b/validator_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "validator_derive" -version = "0.1.0" +version = "0.2.0" authors = ["Vincent Prouillet <vincent@wearewizards.io>"] license = "MIT" description = "Macros 1.1 implementation of #[derive(Validate)]" @@ -22,4 +22,5 @@ serde_json = "0.8" compiletest_rs = "*" [dependencies.validator] -path = "../validator" +# path = "../validator" +version = "0.2.0" |
