37 breaking releases
0.49.0 | Nov 12, 2024 |
---|---|
0.47.0 | Jul 23, 2024 |
0.42.0 | Mar 18, 2024 |
0.35.2 | Dec 21, 2023 |
0.13.0 | Mar 27, 2023 |
#1315 in HTTP server
160 downloads per month
37KB
683 lines
Shuttle service integration for the Poem web framework
Example
use poem::{get, handler, Route};
use shuttle_poem::ShuttlePoem;
#[handler]
fn hello_world() -> &'static str {
"Hello, world!"
}
#[shuttle_runtime::main]
async fn poem() -> ShuttlePoem<impl poem::Endpoint> {
let app = Route::new().at("/", get(hello_world));
Ok(app.into())
}
Dependencies
~25–39MB
~645K SLoC