| Crates.io | skp-validator-actix |
| lib.rs | skp-validator-actix |
| version | 0.1.0 |
| created_at | 2026-01-17 11:21:56.067558+00 |
| updated_at | 2026-01-17 11:21:56.067558+00 |
| description | Actix Web integration for skp-validator - high-performance validation for Actix services |
| homepage | https://github.com/sachin/skp-validator |
| repository | https://github.com/sachin/skp-validator |
| max_upload_size | |
| id | 2050264 |
| size | 50,475 |
High-performance Actix Web integration for skp-validator.
Supports the ValidatedJson extractor for automatic payload validation.
#[post("/register")]
async fn register_user(user: ValidatedJson<RegisterUser>) -> impl Responder {
format!("Welcome {}!", user.name)
}