4 releases

0.2.0 Apr 22, 2024
0.1.2 Jan 9, 2024
0.1.1 Dec 21, 2023
0.1.0 Sep 26, 2023

#596 in HTTP server

Download history 3/week @ 2024-06-16 14/week @ 2024-06-23 22/week @ 2024-06-30 1/week @ 2024-07-28 2/week @ 2024-08-04 2/week @ 2024-08-18 2/week @ 2024-08-25 1/week @ 2024-09-01 2/week @ 2024-09-08 10/week @ 2024-09-22 68/week @ 2024-09-29

80 downloads per month

MIT/Apache and maybe GPL-3.0-or-later

91KB
2K SLoC

Serwus

Helpers for building actix-web/diesel based services.

crates.io Documentation MIT or Apache 2.0 licensed Dependency Status CI downloads

Features

  • MultiPool - Master/replica-aware wrapper for r2d2
  • StatsPresenter - Framework for readiness and statistics reporting
  • JsonError - Middleware that makes actix-web return errors as JSONs

Example

use actix_web::web;
use serwus::{
    server::{Serwus, default_cors},
    EmptyStats
};

#[derive(Clone, EmptyStats)]
pub struct AppData;

async fn hello() -> &'static str {
    "Hello world\n"
}

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    let prepare_app_data = || AppData;

    Serwus::default()
        .start(
            prepare_app_data,
            |app| {
                app.route("/", web::get().to(hello));
            },
            default_cors,
        )
        .await
}

Dependencies

~19–41MB
~729K SLoC