61 个版本
0.8.8 | 2024 年 6 月 23 日 |
---|---|
0.8.5 | 2024 年 5 月 28 日 |
0.8.4 | 2024 年 3 月 23 日 |
0.7.1 | 2023 年 12 月 21 日 |
0.1.0-alpha | 2020 年 6 月 28 日 |
在 #http-router 中排名 4
每月下载 729 次
在 5 个 包中(直接使用 2 个)
240KB
6.5K SLoC
Viz
Viz 的强大路由
示例
use viz_core::{IntoHandler, IntoResponse, Response, Result, Request};
use viz_router::{get, Router};
async fn index() -> Result<impl IntoResponse> {
Ok(())
}
async fn ws(_: Request) -> Result<Response> {
Ok(())
}
let app = Router::new()
.route("/", get(index.into_handler()))
.route("/ws/:name", get(ws));
许可协议
本项目遵循 MIT 许可协议。
作者
依赖项
~7–16MB
~195K SLoC