skp-validator-derive

Crates.ioskp-validator-derive
lib.rsskp-validator-derive
version0.1.0
created_at2026-01-17 11:14:37.331348+00
updated_at2026-01-17 11:14:37.331348+00
descriptionDerive macro for skp-validator
homepage
repositoryhttps://github.com/sachin/skp-validator
max_upload_size
id2050259
size48,777
Sachin Kumar (skpjr001)

documentation

README

skp-validator-derive

Powerful procedural macros for skp-validator.

Provides the #[derive(Validate)] macro and associated attributes to enable declarative validation on your structs.

Usage

use skp_validator::Validate;

#[derive(Validate)]
struct User {
    #[validate(required, length(min = 3))]
    name: String,
}
Commit count: 0

cargo fmt