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
- update README with proper links
- refactor a little bit ignore files
- update changelog (add missing newer Rust versions)
- update Makefile defaults
- add me to the license file
Tested:
- Local tests
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
# 0.4.0-rust-1.54.0
2
+
3
+
* Upgrade to Rust [`1.54.0`](https://blog.rust-lang.org/2021/07/29/Rust-1.54.0.html)
4
+
1
5
# 0.4.0-rust-1.45.2
2
6
3
7
***Breaking change** in avoid mixed user permissions when volume mounting cargo cache directories. This docker images now configures a cargo installation to `/cargo` directory rather than `/home/root/.cargo`. You'll also want to ensure
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,9 @@ where `{rust-stable-version}` is a stable version of rust.
15
15
16
16
You can find a list of available docker tags [here](https://hub.docker.com/r/softprops/lambda-rust/tags)
17
17
18
-
> 💡 If you don't find the version you're looking for, please [open a new github issue](https://github.com/softprops/lambda-rust/issues/new?title=I%27m%20looking%20for%20version%20xxx) to publish one
18
+
> 💡 If you don't find the version you're looking for, please [open a new github issue](https://github.com/rust-serverless/lambda-rust/issues/new?title=I%27m%20looking%20for%20version%20xxx) to publish one
19
19
20
-
You can also depend directly on `softprops/lambda-rust:latest` for the most recently published version.
20
+
You can also depend directly on `rustserverless/lambda-rust:latest` for the most recently published version.
21
21
22
22
## 🤸 usage
23
23
@@ -45,7 +45,7 @@ $ docker run --rm \
45
45
-v ${PWD}:/code \
46
46
-v ${HOME}/.cargo/registry:/cargo/registry \
47
47
-v ${HOME}/.cargo/git:/cargo/git \
48
-
softprops/lambda-rust
48
+
rustserverless/lambda-rust
49
49
```
50
50
> 💡 The -v (volume mount) flags for `/cargo/{registry,git}` are optional but when supplied, provides a much faster turn around when doing iterative development
51
51
@@ -68,7 +68,7 @@ $ docker run --rm \
68
68
-v ${PWD}:/code \
69
69
-v ${HOME}/.cargo/registry:/cargo/registry \
70
70
-v ${HOME}/.cargo/git:/cargo/git \
71
-
softprops/lambda-rust
71
+
rustserverless/lambda-rust
72
72
```
73
73
74
74
For more custom codebases, the '-w' argument can be used to override the working directory.
@@ -82,7 +82,7 @@ $ docker run --rm \
82
82
-v ${HOME}/.cargo/registry:/cargo/registry \
83
83
-v ${HOME}/.cargo/git:/cargo/git \
84
84
-w /code/lambdas/mylambda \
85
-
softprops/lambda-rust
85
+
rustserverless/lambda-rust
86
86
```
87
87
88
88
## ⚓ using hooks
@@ -120,7 +120,7 @@ docker run \
120
120
-v ${PWD}:/code \
121
121
-v ${HOME}/.cargo/registry:/cargo/registry \
122
122
-v ${HOME}/.cargo/git:/cargo/git \
123
-
softprops/lambda-rust
123
+
rustserverless/lambda-rust
124
124
125
125
# start a one-off docker container replicating the "provided.al2" lambda runtime
126
126
# awaiting an event to be provided via stdin
@@ -197,4 +197,4 @@ $ cargo aws-lambda --help
197
197
More instructions can be found [here](https://github.com/vvilhonen/cargo-aws-lambda).
198
198
199
199
200
-
Doug Tangren (softprops) 2020
200
+
Doug Tangren (softprops) 2020, Alexander Zaitsev (zamazan4ik) 2021
0 commit comments