Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
toolchain:
- "1.81.0" # Current MSRV
- "1.82.0" # Current MSRV
- stable
env:
RUST_BACKTRACE: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
toolchain:
- "1.81.0" # Current MSRV
- "1.82.0" # Current MSRV
- stable
env:
RUST_BACKTRACE: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
toolchain:
- "1.81.0" # Current MSRV
- "1.82.0" # Current MSRV
- stable
env:
RUST_BACKTRACE: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
toolchain:
- "1.81.0" # Current MSRV
- "1.82.0" # Current MSRV
- stable
env:
RUST_BACKTRACE: 1
Expand Down
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ pin-project-lite = "0.2"
tower = "0.5"
tower-layer = "0.3"
tower-service = "0.3"


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ fn main() -> Result<(), Box<Error>> {

## Supported Rust Versions (MSRV)

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.
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.

## Security

Expand Down
2 changes: 1 addition & 1 deletion lambda-events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aws_lambda_events"
version = "0.18.0"
rust-version = "1.81.0"
rust-version = "1.82.0"
description = "AWS Lambda event definitions"
authors = [
"Christian Legnitto <christian@legnitto.com>",
Expand Down
2 changes: 1 addition & 1 deletion lambda-extension/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lambda-extension"
version = "0.12.2"
edition = "2021"
rust-version = "1.81.0"
rust-version = "1.82.0"
authors = [
"David Calavera <dcalaver@amazon.com>",
"Harold Sun <sunhua@amazon.com>",
Expand Down
6 changes: 3 additions & 3 deletions lambda-http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = [
"Harold Sun <sunhua@amazon.com>",
]
edition = "2021"
rust-version = "1.81.0"
rust-version = "1.82.0"
description = "Application Load Balancer and API Gateway event types for AWS Lambda"
keywords = ["AWS", "Lambda", "APIGateway", "ALB", "API"]
license = "Apache-2.0"
Expand Down Expand Up @@ -55,8 +55,8 @@ default-features = false
features = ["alb", "apigw"]

[dev-dependencies]
axum-core = "0.5.0"
axum-extra = { version = "0.10.0", features = ["query"] }
axum-core = "0.5.4"
axum-extra = { version = "0.10.2", features = ["query"] }
lambda_runtime_api_client = { version = "0.12.3", path = "../lambda-runtime-api-client" }
log = "^0.4"
maplit = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion lambda-integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "lambda-integration-tests"
version = "0.1.0"
authors = ["Maxime David"]
edition = "2021"
rust-version = "1.81.0"
rust-version = "1.82.0"
description = "AWS Lambda Runtime integration tests"
license = "Apache-2.0"
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
Expand Down
2 changes: 1 addition & 1 deletion lambda-runtime-api-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "lambda_runtime_api_client"
version = "0.12.4"
edition = "2021"
rust-version = "1.81.0"
rust-version = "1.82.0"
authors = [
"David Calavera <dcalaver@amazon.com>",
"Harold Sun <sunhua@amazon.com>",
Expand Down
8 changes: 4 additions & 4 deletions lambda-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = [
]
description = "AWS Lambda Runtime"
edition = "2021"
rust-version = "1.81.0"
rust-version = "1.82.0"
license = "Apache-2.0"
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
categories = ["web-programming::http-server"]
Expand Down Expand Up @@ -40,7 +40,7 @@ hyper = { workspace = true, features = ["http1", "client"] }
lambda-extension = { version = "0.12.2", path = "../lambda-extension", default-features = false, optional = true }
lambda_runtime_api_client = { version = "0.12.3", path = "../lambda-runtime-api-client", default-features = false }
miette = { version = "7.2.0", optional = true }
opentelemetry-semantic-conventions = { version = "0.29", optional = true, features = ["semconv_experimental"] }
opentelemetry-semantic-conventions = { version = "0.31", optional = true, features = ["semconv_experimental"] }
pin-project = "1"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "^1"
Expand All @@ -56,7 +56,7 @@ tower = { workspace = true, features = ["util"] }
tracing = { version = "0.1", features = ["log"] }

[dev-dependencies]
httpmock = "0.7.0"
httpmock = "0.8.1"
hyper-util = { workspace = true, features = [
"client",
"client-legacy",
Expand All @@ -74,4 +74,4 @@ pin-project-lite = { workspace = true }
tracing-appender = "0.2"

[package.metadata.docs.rs]
all-features = true
all-features = true
Loading