docs.rs failed to build validex-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
validex-0.1.1
validex
A Rust validation library.
Unlike validator library, which use syntex or string.
validex use concrete rust values in #[check(...)] attribute.
Any types that implement Check trait can be used in #[check(...)].
This enables IDE-friendly features like: auto-import/fix, goto-def, syntax highlight, hover docs, etc...
Features
Checkderive macros for validating structs.- Zore-cost abstractions:
All,AnyandNotcombinators. - Flexible and Extensible: use functions or any type that implements
Checktrait. - Detailed error reporting: preserves all relevant information.
- IDE friendly: Works well with Rust Analyzer.
Example
Add validex to your Cargo.toml:
[]
= "0.1"
Here is an simple example:
use *;