diff options
author | Vincent Prouillet | 2017-12-05 11:26:12 +0100 |
---|---|---|
committer | GitHub | 2017-12-05 11:26:12 +0100 |
commit | a6bf65df53f67d896efbffddbe46868e81ffa161 (patch) | |
tree | 86b9a3638bcac431e4d98e2650c4cb13b30dfad2 | |
parent | dcc3b0a42f74bedc6cf57feea0f441e7166aa027 (diff) | |
parent | 8227542bb01dffa79f7e08694291480b3df3d728 (diff) | |
download | validator-a6bf65df53f67d896efbffddbe46868e81ffa161.tar.bz2 |
Merge pull request #36 from Eijebong/bump
Update lazy_static to 1.0 and bump version
-rw-r--r-- | validator/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/validator/Cargo.toml b/validator/Cargo.toml index 06ef32c..be60098 100644 --- a/validator/Cargo.toml +++ b/validator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "validator" -version = "0.6.2" +version = "0.6.3" authors = ["Vincent Prouillet <vincent@wearewizards.io>"] license = "MIT" description = "Common validation functions (email, url, length, ...) and trait" @@ -11,7 +11,7 @@ keywords = ["validation", "api", "validator"] [dependencies] url = "1" regex = "0.2" -lazy_static = "0.2" +lazy_static = "1" idna = "0.1" serde = "1" serde_derive = "1" |