-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes issues with http paths. Fixes issues with panics in async functions. Fixes issues reporting errors from serde. Add functions to set RequestContext to the RequestExt. Signed-off-by: David Calavera <[email protected]> Signed-off-by: David Calavera <[email protected]>
- Loading branch information
Showing
4 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "lambda-extension" | ||
version = "0.6.0" | ||
edition = "2021" | ||
authors = ["David Calavera <[email protected]>"] | ||
authors = [ | ||
"David Calavera <[email protected]>", | ||
"Harold Sun <[email protected]>" | ||
] | ||
description = "AWS Lambda Extension API" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/awslabs/aws-lambda-rust-runtime" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "lambda_http" | ||
version = "0.6.0" | ||
authors = ["Doug Tangren"] | ||
version = "0.6.1" | ||
authors = [ | ||
"David Calavera <[email protected]>", | ||
"Harold Sun <[email protected]>" | ||
] | ||
edition = "2021" | ||
description = "Application Load Balancer and API Gateway event types for AWS Lambda" | ||
keywords = ["AWS", "Lambda", "APIGateway", "ALB", "API"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
name = "lambda_runtime_api_client" | ||
version = "0.6.0" | ||
edition = "2021" | ||
authors = ["David Calavera <[email protected]>"] | ||
authors = [ | ||
"David Calavera <[email protected]>", | ||
"Harold Sun <[email protected]>" | ||
] | ||
description = "AWS Lambda Runtime interaction API" | ||
license = "Apache-2.0" | ||
repository = "https://github.com/awslabs/aws-lambda-rust-runtime" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
[package] | ||
name = "lambda_runtime" | ||
version = "0.6.0" | ||
authors = ["David Barsky <[email protected]>"] | ||
version = "0.6.1" | ||
authors = [ | ||
"David Calavera <[email protected]>", | ||
"Harold Sun <[email protected]>" | ||
] | ||
description = "AWS Lambda Runtime" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
|