8 releases (5 breaking)

0.6.0 Feb 29, 2024
0.5.1 Jan 30, 2024
0.4.0 Jan 8, 2024
0.3.0 Dec 1, 2023
0.1.1 Sep 4, 2023

#693 in Web programming

Download history 39/week @ 2023-12-22 119/week @ 2023-12-29 105/week @ 2024-01-05 243/week @ 2024-01-12 193/week @ 2024-01-19 428/week @ 2024-01-26 140/week @ 2024-02-02 149/week @ 2024-02-09 214/week @ 2024-02-16 344/week @ 2024-02-23 317/week @ 2024-03-01 157/week @ 2024-03-08 247/week @ 2024-03-15 364/week @ 2024-03-22 206/week @ 2024-03-29 226/week @ 2024-04-05

1,052 downloads per month
Used in 2 crates (via apistos-core)

MIT license

66KB
1.5K SLoC

Garde-actix-web   Documentation Latest Version Build Status

Actix-web wrapper for garde, a Rust validation library.

Installation

[dependencies]
garde = "0.18"
garde-actix-web = "0.5.1"

Usage example

Simply use garde-actix-web exposed types as a drop in for actix types.

Your types must implement Validate from garde. Validation happens during actix's FromRequest invocation.

If payload is invalid, a 400 error is returned (404 for Path).

Custom error handling can be implemented with an extractor config (garde_actix_web::web::QueryConfig in place of actix_web::web::QueryConfig for example).

use actix_web::HttpResponse;
// instead of actix_web::web::Path
use garde_actix_web::web::Path;
use garde::Validate;

#[derive(Validate)]
struct MyStruct<'a> {
  #[garde(ascii, length(min = 3, max = 25))]
  username: &'a str,
}

fn test(id: Path<MyStruct>) -> HttpResponse {
  todo!()
}

⚠️ When using garde custom validation, the Context type needs to implement Default which is not required by garde.

Context needs to be provided through actix's data or app_data, if not found default will be used instead.

Feature flags

name description extra dependencies
serde_qs Enables the usage of garde for serde_qs::actix::QsQuery<T> serde_qs

Compatibility matrix

garde version garde-actix-web-version
0.14 0.1.x
0.15 0.2.x
0.16 0.3.x
0.17 0.4.x
0.18 0.5.x, 0.6.x

About us

Garde-actix-web is provided by Netwo.

We use this crate for our internal needs and therefore are committed to its maintenance, however we cannot provide any additional guaranty. Use it at your own risks.

While we won't invest in any feature we don't need, we are open to accept any pull request you might propose.

We are a France based full-remote company operating in the telecom sector. If you are interested in learning more, feel free to visit our career page.

Dependencies

~18–32MB
~554K SLoC