#actix-web #helper #building #service #macro #derive #serwus

serwus-derive

用于构建基于actix-web/diesel的服务助手 - 宏

4个版本

0.2.0 2024年4月22日
0.1.2 2024年1月9日
0.1.1 2023年12月21日
0.1.0 2023年9月26日

#83 in #helpers


serwus 中使用

MIT/Apache

4KB
57

Serwus

用于构建基于actix-web/diesel的服务助手。

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

特性

  • MultiPool - 对 r2d2 的主/副本感知包装器
  • StatsPresenter - 准备状态和统计报告框架
  • JsonError - 中间件,使actix-web以JSON形式返回错误

示例

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
}

依赖项

~290–750KB
~18K SLoC