35个重大版本发布

0.47.0 2024年7月23日
0.45.0 2024年5月13日
0.42.0 2024年3月18日
0.35.2 2023年12月21日
0.13.0 2023年3月27日

1484HTTP服务器

Download history 3/week @ 2024-04-29 137/week @ 2024-05-13 6/week @ 2024-05-20 7/week @ 2024-05-27 127/week @ 2024-06-10 3/week @ 2024-06-17 125/week @ 2024-07-22 3/week @ 2024-07-29

每月128 次下载

Apache-2.0

31KB
503

Salvo web框架的Shuttle服务集成

示例

use salvo::prelude::*;

#[handler]
async fn hello_world(res: &mut Response) {
    res.render(Text::Plain("Hello, world!"));
}

#[shuttle_runtime::main]
async fn salvo() -> shuttle_salvo::ShuttleSalvo {
    let router = Router::new().get(hello_world);

    Ok(router.into())
}

依赖关系

~26–40MB
~739K SLoC