0.0.3 • Published 9 days ago

serverless-rusty v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
9 days ago

Serverless Plugin to build and deploy Rust lambdas

Tested only with 1 simple Cargo project. You can try it with cargo workspace, the plugin simple tries to find the zip file built by cargo lambda, in the ./target/lambdas/ folder.

Requirements

Example Serverless Config File

service: my-serverless-project
frameworkVersion: '3'

provider:
  deploymentBucket: my-deployment-bucket
  name: aws
  runtime: provided.al2023

package:
  individually: true # The plugin tested only with individual packaging

functions:
  hello:
    handler: bootstrap # This will be explicitly overridden by the plugin to bootstrap 
    cargo:
      package: my-lambda # The name of the cargo package in Cargo.toml

plugins:
  - serverless-rusty
0.0.3

9 days ago

0.0.2

12 days ago

0.0.1

7 months ago