27 releases (11 breaking)
0.23.1 | Jun 14, 2024 |
---|---|
0.22.0 | May 15, 2024 |
0.19.0 | Mar 2, 2024 |
0.16.3 | Jul 30, 2023 |
0.12.0-beta.10 | Nov 3, 2022 |
#1898 in Parser implementations
36 downloads per month
12KB
168 lines
axum_serde_valid
This crate is a Rust library for providing validation mechanism to axum with serde_valid crate.
More information about this crate can be found in the crate documentation.
Installation
This crate works with Cargo and can be found on crates.io with a Cargo.toml like:
[dependencies]
axum = "0.6"
axum_serde_valid = "0.23.1"
serde = "^1.0"
serde_valid = "0.20"
Example
use axum::{routing::post, Router};
use axum_serde_valid::Json;
use serde::Deserialize;
use serde_valid::Validate;
#[derive(Deserialize, Validate)]
struct User {
#[validate(max_length = 3)]
name: String,
}
let app = Router::<()>::new().route("/json", post(|user: Json<User>| async move { "hello" }));
License: MIT
Dependencies
~9–17MB
~224K SLoC