Commits on Source (60)
-
Yasha authored
* Update kcov v34 -> v38 * Fix make coverage
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
-
Yasha authored
* Remove unnecessary string manipulations * Improve efficiency of argument objects (to remove unnecessary string objects) * Change `&String` to `&str` (Validator) * Change `&Option<String>` to `Option<&str>` (OptionalValidator) * Remove public access to ValidationResult type
-
Yasha authored
* Replaced it with an array
-
Yasha authored
-
Yasha authored
* Update Feedback and Message * Remove unnecessary use of String fields
-
Yasha authored
-
Yasha authored
.renovaterc.json
0 → 100644
.tool/ci-runner
deleted
100755 → 0
.tool/get-covered
deleted
100755 → 0
.tool/setup-gitlab-runner
deleted
100755 → 0
.tool/setup-kcov
deleted
100755 → 0
... | ... | @@ -4,7 +4,7 @@ description = """\ |
A yet another validation library provides a macro inspired by \ | ||
Accord.\ | ||
""" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = ["Yasuhiro Яша Asaka <yasuhiro.asaka@grauwoelfchen.net>"] | ||
edition = "2018" | ||
homepage = "https://gitlab.com/grauwoelfchen/adequate" | ||
... | ... | @@ -16,14 +16,22 @@ repository = "https://gitlab.com/grauwoelfchen/adequate" |
license = "Apache-2.0" | ||
exclude = [ | ||
".cargo-huskey/*", | ||
".cargo-husky", | ||
".cache", | ||
"Makefile", | ||
"/.env", | ||
"/.env.ci.sample", | ||
"/.clippy.toml", | ||
"/.rustfmt.toml", | ||
"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" | ||
... | ... |
This diff is collapsed.
rust-toolchain
0 → 100644
src/error.rs
0 → 100644
src/feedback.rs
0 → 100644
src/message.rs
0 → 100644
src/validation/contain.rs
0 → 100644