40 breaking releases
0.52.0 | Feb 4, 2025 |
---|---|
0.50.0 | Jan 7, 2025 |
0.49.0 | Nov 12, 2024 |
0.47.0 | Jul 23, 2024 |
0.13.0 | Mar 27, 2023 |
#1621 in HTTP server
998 downloads per month
45KB
792 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
~24–39MB
~694K SLoC