| Crates.io | skp-validator-axum |
| lib.rs | skp-validator-axum |
| version | 0.1.0 |
| created_at | 2026-01-17 11:20:42.425286+00 |
| updated_at | 2026-01-17 11:20:42.425286+00 |
| description | Axum integration for skp-validator - seamless validation in Axum web applications |
| homepage | |
| repository | https://github.com/sachin/skp-validator |
| max_upload_size | |
| id | 2050262 |
| size | 27,560 |
Seamless integration of skp-validator with the Axum web framework.
Provides a ValidatedJson extractor that automatically validates incoming JSON payloads and returns standard validation error responses.
async fn create_user(ValidatedJson(user): ValidatedJson<CreateUser>) -> String {
format!("Created user: {}", user.name)
}