poem-lambda

Crates.iopoem-lambda
lib.rspoem-lambda
version5.0.0
sourcesrc
created_at2021-09-29 07:54:26.660467
updated_at2024-03-30 09:36:47.890265
descriptionPoem for AWS Lambda
homepagehttps://github.com/poem-web/poem
repositoryhttps://github.com/poem-web/poem
max_upload_size
id457911
size8,324
Sunli (sunli829)

documentation

https://docs.rs/poem/

README

Poem For AWS Lambda

Crates.io version Download docs.rs docs Unsafe Rust forbidden rustc 1.75.0+

Example

use poem::handler;
use poem_lambda::Error;

#[handler]
fn index() -> &'static str {
  "hello"
}

#[tokio::main]
async fn main() -> Result<(), Error> {
  poem_lambda::run(index).await
}

Safety

This crate uses #![forbid(unsafe_code)] to ensure everything is implemented in 100% Safe Rust.

MSRV

The minimum supported Rust version for this crate is 1.75.0.

Contributing

:balloon: Thanks for your help improving the project! We are so happy to have you!

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Poem by you, shall be licensed as Apache, without any additional terms or conditions.

Commit count: 1279

cargo fmt