33 breaking releases

new 0.45.0 May 13, 2024
0.43.0 Apr 2, 2024
0.42.0 Mar 18, 2024
0.35.2 Dec 21, 2023
0.13.0 Mar 27, 2023

#861 in HTTP server

Download history 20/week @ 2024-01-18 9/week @ 2024-01-25 8/week @ 2024-02-01 104/week @ 2024-02-08 66/week @ 2024-02-15 31/week @ 2024-02-22 131/week @ 2024-02-29 298/week @ 2024-03-07 687/week @ 2024-03-14 20/week @ 2024-03-21 140/week @ 2024-03-28 35/week @ 2024-04-04 4/week @ 2024-04-11 116/week @ 2024-04-18 34/week @ 2024-04-25 7/week @ 2024-05-02

162 downloads per month

Apache-2.0

31KB
507 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

~21–33MB
~541K SLoC