http-service-lambda 0.1.0

HttpService server that AWS Lambda Rust Runtime as backend
Documentation

HttpService server that uses AWS Lambda Rust Runtime as backend.

This crate builds on the standard http interface provided by the lambda_http crate and provides a http server that runs on the lambda runtime.

Compatible services like tide apps can run on lambda and processing events from API Gateway or ALB without much change.

Examples

Hello World

#![feature(async_await)]

fn main() {
let mut app = tide::App::new();
app.at("/").get(async move |_| "Hello, world!");
http_service_lambda::run(app.into_http_service());
}