blob: cd00a3a6d1afb2a2e06ff4d00fdb23568e1e2711 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
[package]
name = "validator_derive"
version = "0.6.1"
authors = ["Vincent Prouillet <vincent@wearewizards.io>"]
license = "MIT"
description = "Macros 1.1 implementation of #[derive(Validate)]"
homepage = "https://github.com/Keats/validator"
repository = "https://github.com/Keats/validator"
keywords = ["validation", "api", "validator"]
[lib]
proc-macro = true
[features]
phone = ["validator/phone"]
[dependencies]
syn = "0.11"
quote = "0.3"
if_chain = "0"
validator = { version = "0.6", path = "../validator"}
[dev-dependencies]
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
compiletest_rs = "0.3"
regex = "0.2"
lazy_static = "1"
|