Skip to content

Commit 12e57a6

Browse files
Merge branch 'aws:main' into feat/concurrent-lambda-runtime
2 parents 0a61864 + ba7e27a commit 12e57a6

File tree

18 files changed

+104
-103
lines changed

18 files changed

+104
-103
lines changed

.github/workflows/build-events.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
toolchain:
22-
- "1.82.0" # Current MSRV
22+
- "1.84.0" # Current MSRV
2323
- stable
2424
env:
2525
RUST_BACKTRACE: 1

.github/workflows/build-extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
toolchain:
28-
- "1.82.0" # Current MSRV
28+
- "1.84.0" # Current MSRV
2929
- stable
3030
env:
3131
RUST_BACKTRACE: 1

.github/workflows/build-integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
toolchain:
29-
- "1.82.0" # Current MSRV
29+
- "1.84.0" # Current MSRV
3030
- stable
3131
env:
3232
RUST_BACKTRACE: 1

.github/workflows/build-runtime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
matrix:
2626
toolchain:
27-
- "1.82.0" # Current MSRV
27+
- "1.84.0" # Current MSRV
2828
- stable
2929
env:
3030
RUST_BACKTRACE: 1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace]
2-
resolver = "2"
2+
resolver = "3"
33
members = [
44
"lambda-http",
55
"lambda-integration-tests",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ fn main() -> Result<(), Box<Error>> {
489489

490490
## Supported Rust Versions (MSRV)
491491

492-
The AWS Lambda Rust Runtime requires a minimum of Rust 1.82.0, and is not guaranteed to build on compiler versions earlier than that.
492+
The AWS Lambda Rust Runtime requires a minimum of Rust 1.84.0, and is not guaranteed to build on compiler versions earlier than that.
493493

494494
## Security
495495

examples/advanced-appconfig-feature-flags/cdk/package-lock.json

Lines changed: 81 additions & 81 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/advanced-appconfig-feature-flags/cdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"dependencies": {
2323
"aws-cdk-lib": "2.193.0",
24-
"cargo-lambda-cdk": "^0.0.22",
24+
"cargo-lambda-cdk": "^0.0.35",
2525
"constructs": "^10.0.0",
2626
"source-map-support": "^0.5.21"
2727
}

examples/extension-logs-kinesis-firehose/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2021"
77
lambda-extension = { path = "../../lambda-extension" }
88
tokio = { version = "1.46.1", features = ["full"] }
99
aws-config = { version = "1.8.1", features = ["behavior-version-latest"] }
10-
aws-sdk-firehose = "1.82.0"
10+
aws-sdk-firehose = "1.84.0"

0 commit comments

Comments
 (0)