Simulating rust aws lambda functions locally during dev

  1. I'm writing AWS lambda functions in Rust.

  2. I am aware of GitHub - awslabs/aws-lambda-rust-runtime: A Rust runtime for AWS Lambda

  3. This question is not about bundling up Rust functions to deploy on Lambda.

  4. This question is "is there a way to run AWS Lambda Rust functions locally during dev time". If the answer is no, the alternative is to have two sets of lambda functions, foo-production, foo-dev, having the website using foo-production, and some local dev run against foo-dev. However, I'd prefer to not deploy "dev testing lambda functions" to lambda at all, and just run them locally. Is there a nice way to handle this?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.