Skip to content

Commit ba7e27a

Browse files
authored
refactor: update MSRV to 1.84, enable MSRV-aware resolver (#1078)
1 parent eeb7686 commit ba7e27a

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
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
@@ -483,7 +483,7 @@ fn main() -> Result<(), Box<Error>> {
483483

484484
## Supported Rust Versions (MSRV)
485485

486-
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.
486+
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.
487487

488488
## Security
489489

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"

examples/http-dynamodb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ serde_json = "1.0.140"
88
serde = { version = "1.0.219", features = ["derive"] }
99
serde_dynamo = { version = "4.2.14", features = ["aws-sdk-dynamodb+1"] }
1010
lambda_http = { path = "../../lambda-http" }
11-
aws-sdk-dynamodb = "1.82.0"
11+
aws-sdk-dynamodb = "1.84.0"
1212
aws-config = { version = "1.8.1", features = ["behavior-version-latest"] }
1313
tokio = { version = "1.46.1", features = ["macros"] }

lambda-events/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "aws_lambda_events"
33
version = "1.0.2"
4-
rust-version = "1.82.0"
4+
rust-version = "1.84.0"
55
description = "AWS Lambda event definitions"
66
authors = [
77
"Christian Legnitto <christian@legnitto.com>",

lambda-extension/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "lambda-extension"
33
version = "1.0.1"
44
edition = "2021"
5-
rust-version = "1.82.0"
5+
rust-version = "1.84.0"
66
authors = [
77
"David Calavera <dcalaver@amazon.com>",
88
"Harold Sun <sunhua@amazon.com>",

0 commit comments

Comments
 (0)