5 releases

0.2.1 Feb 4, 2025
0.2.0 Apr 22, 2024
0.1.2 Jan 9, 2024
0.1.1 Dec 21, 2023
0.1.0 Sep 26, 2023

#229 in HTTP server

Download history 25/week @ 2024-11-20 26/week @ 2024-11-27 14/week @ 2024-12-04 29/week @ 2024-12-11 24/week @ 2024-12-18 24/week @ 2025-01-08 13/week @ 2025-01-22 75/week @ 2025-01-29 60/week @ 2025-02-05 33/week @ 2025-02-12 32/week @ 2025-02-19 59/week @ 2025-02-26 20/week @ 2025-03-05

146 downloads per month

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

92KB
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

~20–44MB
~759K SLoC