serverless-rust
serverless-rust copied to clipboard
⚡ 🦀 a serverless framework plugin for rustlang applications
## 🐛 Bug description Code fails to compile in the lambda-rust container on Windows WSL2 with Docker. The following error occurs: ``` Status: Downloaded newer image for softprops/lambda-rust:0.2.7-rust-1.43.1 error: could...
## 🐛 Bug description Cannot deploy selected functions from sls configuration. #### 🤔 Expected Behavior Deploying selected functions #### 👟 Steps to reproduce ``` slss --stage=stage --region=eu-west-1 deploy --config=some-config.yaml --function=echo...
## What did you implement: This patch creates an explicit interface for setting `DEBUGINFO` on Docker run invocations. To do so, one simply specifies `debugInfo` under the `rust` section of...
Hey @softprops! Thanks for making this awesome project! Really enjoyed following your documentation, and deploying rust lambdas :) I stumbled across a minor issue that might have something to do...
## 💡 Feature description Local development keeps coming up as a common theme. Figure out and document the story for what this looks like, even if its just documenting how...
## 💡 Feature description It would be nice if it was possible to use the `include` and `exclude` package configuration in `serverless.yml` to choose other files to bundle with the...
## 🐛 Bug description When I do `sls deploy` with this in my `Cargo.toml`: ``` headless_chrome = {path = "../headless_chrome/"} ``` I get this error: https://gist.github.com/atroche/661d7b0df67889635e44317fafb6ec48 And I've also tried...
Hi everyone! First of all, thanks to @softprops for building this tool and running it for several years. If you're like me, you have some legacy projects using `serverless-rust` from...
## What did you implement: - Add "strictMode" functionality - "strictMode" is on by default - When enabled, an error is thrown when no Rust builds are found - When...
## 💡 Feature description When an artifact is provided in `serverless.yaml` for a Rust function, skip building that function and use the provided artifact instead. This should not cause the...