-
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.
Ensure that we don't print internal warnings on user applications. Signed-off-by: David Calavera <[email protected]> Signed-off-by: David Calavera <[email protected]>
- Loading branch information
Showing
7 changed files
with
23 additions
and
19 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lambda-extension" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
edition = "2021" | ||
authors = [ | ||
"David Calavera <[email protected]>", | ||
|
@@ -19,7 +19,7 @@ bytes = "1.0" | |
chrono = { version = "0.4", features = ["serde"] } | ||
http = "0.2" | ||
hyper = { version = "0.14.20", features = ["http1", "client", "server", "stream", "runtime"] } | ||
lambda_runtime_api_client = { version = "0.6", path = "../lambda-runtime-api-client" } | ||
lambda_runtime_api_client = { version = "0.7", path = "../lambda-runtime-api-client" } | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "^1" | ||
tracing = { version = "0.1", features = ["log"] } | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "lambda_http" | ||
version = "0.6.2" | ||
version = "0.7.0" | ||
authors = [ | ||
"David Calavera <[email protected]>", | ||
"Harold Sun <[email protected]>" | ||
|
@@ -28,7 +28,7 @@ bytes = "1" | |
http = "0.2" | ||
http-body = "0.4" | ||
hyper = "0.14.20" | ||
lambda_runtime = { path = "../lambda-runtime", version = "0.6" } | ||
lambda_runtime = { path = "../lambda-runtime", version = "0.7" } | ||
serde = { version = "^1", features = ["derive"] } | ||
serde_json = "^1" | ||
serde_urlencoded = "0.7.0" | ||
|
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
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
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
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,6 +1,6 @@ | ||
[package] | ||
name = "lambda_runtime_api_client" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
edition = "2021" | ||
authors = [ | ||
"David Calavera <[email protected]>", | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "lambda_runtime" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = [ | ||
"David Calavera <[email protected]>", | ||
"Harold Sun <[email protected]>" | ||
|
@@ -30,4 +30,4 @@ async-stream = "0.3" | |
tracing = { version = "0.1", features = ["log"] } | ||
tower = { version = "0.4", features = ["util"] } | ||
tokio-stream = "0.1.2" | ||
lambda_runtime_api_client = { version = "0.6", path = "../lambda-runtime-api-client" } | ||
lambda_runtime_api_client = { version = "0.7", path = "../lambda-runtime-api-client" } |