This crate is a Rust library for providing validation mechanism to actix-web with jsonschema crate.
More information about this crate can be found in the crate documentation.
This crate works with Cargo and can be found on crates.io with a Cargo.toml like:
toml
[dependencies]
actix-web-jsonschema = { version = "1", features = ["validator"] }
serde = { version = "1", features = ["derive"] }
schemars = { version = "0.8" }
validator = { version = "0.16", features = ["derive"] }
| actixweb | actixwebjsonschema | | :---------------------------------------------------------------------------------------- | :---------------------------------------------------------------------------------------------------------------- | | actixweb::web::Path | actixwebjsonschema::Path | | actixweb::web::Query | actixwebjsonschema::Query | | actixweb::web::Form | actixwebjsonschema::Form | | actixweb::web::Json | actixweb_jsonschema::Json |
```rust use actixweb::{web, App}; use serde::Deserialize; use schemars::JsonSchema; use validator::Validate; use actixweb_jsonschema::Query;
struct Request { #[validate(length(min = 1, max = 20))] name: String, }
async fn index(Query(Request{ name }): Query
fn main() {
let app = App::new().service(
web::resource("/hello").route(web::get().to(index))); // <- use Query
extractor
}
```
License: MIT