You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,15 +11,14 @@ Install the plugin with npm
11
11
$ npm install serverless-rust
12
12
```
13
13
14
-
💡 This serverless plugin assumes you are building Rustlang lambdas using the [lando](https://github.com/softprops/lando) or [crowbar](https://github.com/ilianaw/rust-crowbar) rustlang crates.
14
+
💡 This serverless plugin assumes you are building Rustlang lambdas targetting the AWS Lambda "provided" runtime. The [AWS Lambda Rust Runtime](https://github.com/awslabs/aws-lambda-rust-runtime) makes this easy.
15
15
16
16
Add the following to your serverless project's `serverless.yml` file
17
17
18
18
```yaml
19
19
service: demo
20
20
provider:
21
21
name: aws
22
-
# crowbar and lando integrate with aws lambda's python3.6 runtime
23
22
runtime: rust
24
23
plugins:
25
24
# this adds informs servleress to use
@@ -46,7 +45,6 @@ functions:
46
45
You can optionally adjust the default settings of the dockerized build env using
47
46
a custom section of your serverless.yaml configuration
48
47
49
-
50
48
```yaml
51
49
custom:
52
50
# this section allows for customization of the default
@@ -90,6 +88,8 @@ functions:
90
88
91
89
### 0.1.*
92
90
91
+
Older versions targetted the python 3.6 AWS Lambda runtime.
92
+
93
93
* lando api gateway application - https://github.com/softprops/serverless-lando
94
94
* multi function lando api gateway application - https://github.com/softprops/serverless-multi-lando
0 commit comments