Skip to content

Commit 51ea777

Browse files
authoredApr 13, 2019
Merge pull request #35 from softprops/update-lambda-rust
update to latest lambda-rust docker image
2 parents 363102c + be8384c commit 51ea777

File tree

6 files changed

+97
-3533
lines changed

6 files changed

+97
-3533
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# ⚡ 0.3.3
2+
3+
- bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.2.1-rust-1.34.0 to gain [new rust 1.34.0 features](https://blog.rust-lang.org/2019/04/11/Rust-1.34.0.html).
4+
15
# ⚡ 0.3.2
26

37
- ✨new support for invoking your lambdas locally.

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
const { spawnSync } = require("child_process");
88
const path = require("path");
99

10-
const DEFAULT_DOCKER_TAG = "0.2.1-rust-1.33.0";
10+
const DEFAULT_DOCKER_TAG = "0.2.1-rust-1.34.0";
1111
const RUST_RUNTIME = "rust";
1212
const BASE_RUNTIME = "provided";
1313
const NO_OUTPUT_CAPTURE = { stdio: ["ignore", process.stdout, process.stderr] };

‎package-lock.json

+50-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "serverless-rust",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "Serverless framework plugin for Rustlang applications",
55
"main": "index.js",
66
"scripts": {
@@ -25,7 +25,7 @@
2525
"dependencies": {
2626
"fs-copy-file-sync": "^1.1.1",
2727
"fs-extra": "^7.0.1",
28-
"serverless": "^1.39.1",
28+
"serverless": "^1.40.0",
2929
"test": "^0.6.0"
3030
},
3131
"devDependencies": {

0 commit comments

Comments
 (0)
Failed to load comments.