diff options
| author | Vincent Prouillet | 2016-12-27 14:31:17 +0900 |
|---|---|---|
| committer | Vincent Prouillet | 2016-12-28 11:49:43 +0900 |
| commit | c5c76fac8726d53988092d71c818d38f12e8348e (patch) | |
| tree | fffc8d3c5f369da2b935d118a2118d2fcca905a5 /validator_derive/Cargo.toml | |
| download | validator-c5c76fac8726d53988092d71c818d38f12e8348e.tar.bz2 | |
Initial commit
Diffstat (limited to 'validator_derive/Cargo.toml')
| -rw-r--r-- | validator_derive/Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/validator_derive/Cargo.toml b/validator_derive/Cargo.toml new file mode 100644 index 0000000..76c5e7e --- /dev/null +++ b/validator_derive/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "validator_derive" +version = "0.1.0" +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 + +[dependencies] +syn = "0.10" +quote = "0.3" + +[dev-dependencies] +serde = "0.8" +serde_derive = "0.8" +serde_json = "0.8" +compiletest_rs = "*" + +[dependencies.validator] +path = "../validator" |
