-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (38 loc) · 927 Bytes
/
Cargo.toml
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
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "adequate"
description = """\
A yet another validation library provides a macro inspired by \
Accord.\
"""
version = "0.1.2"
authors = ["Yasuhiro Яша Asaka <[email protected]>"]
edition = "2018"
homepage = "https://gitlab.com/grauwoelfchen/adequate"
readme = "README.md"
keywords = ["validation"]
categories = ["web-programming"]
documentation = "https://docs.rs/crate/adequate"
repository = "https://gitlab.com/grauwoelfchen/adequate"
license = "Apache-2.0"
exclude = [
".cargo-husky",
".cache",
"Makefile",
"rust-toolchain",
".env",
".env.ci.sample",
".gitignore",
".clippy.toml",
".rustfmt.toml",
".gitlab-ci.yml",
".renovaterc.json",
]
[badges]
gitlab = { repository = "grauwoelfchen/adequate", branch = "trunk" }
[dependencies]
lazy_static = "1.4"
strfmt = "0.1.6"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]