The recommended folder structure for Rust functions is:
- src
- handler.rs
- serverless.ymlYour serverless.yml functions should look something like this:
provider:
runtime: rust179
functions:
main:
handler: "handler"You can find more Rust examples in the examples folder.