#axum #serde #postcard #post #response #extractor #create-user

axum-postcard

📬 postcard axum extractor and response using serde

2 releases

0.1.1 Feb 10, 2024
0.1.0 Feb 10, 2024

#668 in Encoding

GPL-3.0-only

17KB
173 lines

📬 postcard axum extractor and response using serde

Example

Request

use axum::{extract, routing::post, Router};
use serde::Deserialize;
use axum_postcard::Postcard;

#[derive(Deserialize)]
struct CreateUser {
    email: String,
    password: String,
}

async fn create_user(
    Postcard(payload): Postcard<CreateUser>
) {
    // payload is a `CreateUser`
    todo!()
}

Response

use axum::{extract::Path, routing::get, Router};
use serde::Serialize;
use axum_postcard::Postcard;

#[derive(Serialize)]
struct User {
    id: u32,
    username: String,
}

async fn get_user(
    Path(user_id) : Path<u32>
) -> Postcard<User> {
    let user = find_user(user_id).await;
    Postcard(user)
}


async fn find_user(user_id: u32) -> User {
    todo!()
}

Dependencies

~6–14MB
~152K SLoC