An open API service indexing awesome lists of open source software.

https://github.com/kellpossible/form-validation

A Rust library for validating forms, and allowing validation logic to be shared.
https://github.com/kellpossible/form-validation

Last synced: about 1 year ago
JSON representation

A Rust library for validating forms, and allowing validation logic to be shared.

Awesome Lists containing this project

README

          

# form-validation [![crates.io badge](https://img.shields.io/crates/v/form-validation.svg)](https://crates.io/crates/form-validation) [![docs.rs badge](https://docs.rs/form-validation/badge.svg)](https://docs.rs/form-validation/) [![license badge](https://img.shields.io/github/license/kellpossible/form-validation)](https://github.com/kellpossible/form-validation/blob/master/LICENSE.txt) [![github action badge](https://github.com/kellpossible/form-validation/workflows/Rust/badge.svg)](https://github.com/kellpossible/form-validation/actions?query=workflow%3ARust)

A Rust library for validating forms, and allowing validation logic to be shared.

[Changelog](https://github.com/kellpossible/form-validation/releases)

## Optional Features

+ `"stdweb-support"` - enable support for [stdweb](https://crates.io/crates/stdweb) on the `wasm32-unknown-unknown` platform.
+ `"wasm-bindgen-support"` - enable for [wasm-bindgen](https://crates.io/crates/wasm-bindgen) on the `wasm32-unknown-unknown` platform.
+ `"async"` - enable an asynchronous version of this API, and conversion traits from synchronous to asynchronous.