8 releases

0.3.0-beta.0 Aug 8, 2024
0.2.0 Feb 1, 2023
0.1.0 Dec 28, 2022
0.1.0-beta.2 Aug 15, 2022
0.0.7 Nov 22, 2020

#1486 in Encoding

Download history 23/week @ 2024-07-29 117/week @ 2024-08-05 60/week @ 2024-08-12 71/week @ 2024-08-19 9/week @ 2024-08-26 25/week @ 2024-09-02 8/week @ 2024-09-09 18/week @ 2024-09-16 28/week @ 2024-09-23 42/week @ 2024-09-30 37/week @ 2024-10-07 35/week @ 2024-10-14 27/week @ 2024-10-21 30/week @ 2024-10-28 30/week @ 2024-11-04 25/week @ 2024-11-11

113 downloads per month
Used in zero4rs

MIT/Apache

105KB
2.5K SLoC

serde-querystring for actix-web

This crate provides an extractor for serde-querystring which can be used in place of the actix-web::Query extractor.

use serde::Deserialize;
use serde_querystring_actix::QueryString;

#[derive(Deserialize)]
pub struct AuthRequest {
   id: u64,
   scopes: Vec<u64>,
}

// In your handler
async fn index(QueryString(info): QueryString<AuthRequest>) -> String {
    format!("Authorization request for client with id={} and type={:?}!", info.id, info.scopes)
}

Dependencies

~15–26MB
~438K SLoC