#web-framework #actix-web #restful #rust

bin+lib serv4rs

serv4rs 是一个强大、实用且极其快速的 Rust Web 框架

8 个版本

0.1.7 2023 年 4 月 7 日
0.1.6 2023 年 4 月 2 日
0.1.4 2023 年 3 月 30 日

HTTP 服务器 中排名 866

每月下载量 23

MIT/ApacheLGPL-3.0

1MB
2K SLoC

Rust 1.5K SLoC // 0.1% comments JavaScript 279 SLoC // 0.1% comments

🔥 serv4rs 是一个强大、实用且极其快速的 Rust Web 框架

use serv4rs::{reg_router, run};

#[rustfmt::skip]
pub fn config(cfg: &mut actix_web::web::ServiceConfig) {
    reg_router(cfg, "GET", "/1", || async { "Hey there! 啊啊送积分啦;送积分啦 1" }); 
    reg_router(cfg, "GET", "/2", || async { "Hey there! 啊啊送积分啦;送积分啦 2" }); 
    reg_router(cfg, "GET", "/3", || async { "Hey there! 啊啊送积分啦;送积分啦 3" }); 
    reg_router(cfg, "GET", "/4", || async { "Hey there! 啊啊送积分啦;送积分啦 4" });    
}

#[tokio::main]
async fn main() {
    run("serv4rs", config).await
}

依赖项

~65MB
~1.5M SLoC