Skip to content

Commit 3c8a8be

Browse files
Bump rustc version to 1.82.0 (#1044)
* Update Dependencies Signed-off-by: Astraea Quinn Sinclair <[email protected]>
1 parent 726bcea commit 3c8a8be

File tree

12 files changed

+18
-16
lines changed

12 files changed

+18
-16
lines changed

.github/workflows/build-events.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
toolchain:
19-
- "1.81.0" # Current MSRV
19+
- "1.82.0" # Current MSRV
2020
- stable
2121
env:
2222
RUST_BACKTRACE: 1

.github/workflows/build-extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
toolchain:
25-
- "1.81.0" # Current MSRV
25+
- "1.82.0" # Current MSRV
2626
- stable
2727
env:
2828
RUST_BACKTRACE: 1

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
toolchain:
26-
- "1.81.0" # Current MSRV
26+
- "1.82.0" # Current MSRV
2727
- stable
2828
env:
2929
RUST_BACKTRACE: 1

.github/workflows/build-runtime.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
toolchain:
24-
- "1.81.0" # Current MSRV
24+
- "1.82.0" # Current MSRV
2525
- stable
2626
env:
2727
RUST_BACKTRACE: 1

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,5 @@ pin-project-lite = "0.2"
3232
tower = "0.5"
3333
tower-layer = "0.3"
3434
tower-service = "0.3"
35+
36+

README.md

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

486486
## Supported Rust Versions (MSRV)
487487

488-
The AWS Lambda Rust Runtime requires a minimum of Rust 1.81.0, and is not guaranteed to build on compiler versions earlier than that.
488+
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.
489489

490490
## Security
491491

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 = "0.18.0"
4-
rust-version = "1.81.0"
4+
rust-version = "1.82.0"
55
description = "AWS Lambda event definitions"
66
authors = [
77
"Christian Legnitto <[email protected]>",

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 = "0.12.2"
44
edition = "2021"
5-
rust-version = "1.81.0"
5+
rust-version = "1.82.0"
66
authors = [
77
"David Calavera <[email protected]>",
88
"Harold Sun <[email protected]>",

lambda-http/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"Harold Sun <[email protected]>",
77
]
88
edition = "2021"
9-
rust-version = "1.81.0"
9+
rust-version = "1.82.0"
1010
description = "Application Load Balancer and API Gateway event types for AWS Lambda"
1111
keywords = ["AWS", "Lambda", "APIGateway", "ALB", "API"]
1212
license = "Apache-2.0"
@@ -55,8 +55,8 @@ default-features = false
5555
features = ["alb", "apigw"]
5656

5757
[dev-dependencies]
58-
axum-core = "0.5.0"
59-
axum-extra = { version = "0.10.0", features = ["query"] }
58+
axum-core = "0.5.4"
59+
axum-extra = { version = "0.10.2", features = ["query"] }
6060
lambda_runtime_api_client = { version = "0.12.3", path = "../lambda-runtime-api-client" }
6161
log = "^0.4"
6262
maplit = "1.0"

lambda-integration-tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "lambda-integration-tests"
33
version = "0.1.0"
44
authors = ["Maxime David"]
55
edition = "2021"
6-
rust-version = "1.81.0"
6+
rust-version = "1.82.0"
77
description = "AWS Lambda Runtime integration tests"
88
license = "Apache-2.0"
99
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"

0 commit comments

Comments
 (0)