41 breaking releases
0.53.0 | Mar 12, 2025 |
---|---|
0.51.0 | Jan 10, 2025 |
0.49.0 | Nov 12, 2024 |
0.47.0 | Jul 23, 2024 |
0.13.0 | Mar 27, 2023 |
#1981 in HTTP server
146 downloads per month
65KB
862 lines
Shuttle service integration for the Salvo web framework
Example
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())
}
Dependencies
~25–41MB
~737K SLoC