diff --git a/Cargo.lock b/Cargo.lock index 8b17892..d1bb3e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -908,7 +908,7 @@ dependencies = [ "cloud-scanner-cli", "envy", "lambda_http", - "lambda_runtime", + "lambda_runtime 0.14.1", "log", "pkg-version", "serde", @@ -1971,7 +1971,7 @@ dependencies = [ "http-body 1.0.1", "http-body-util", "hyper 1.6.0", - "lambda_runtime", + "lambda_runtime 0.13.0", "mime", "percent-encoding", "pin-project-lite", @@ -1998,7 +1998,7 @@ dependencies = [ "http-serde", "hyper 1.6.0", "hyper-util", - "lambda_runtime_api_client", + "lambda_runtime_api_client 0.11.1", "pin-project", "serde", "serde_json", @@ -2010,6 +2010,34 @@ dependencies = [ "tracing", ] +[[package]] +name = "lambda_runtime" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1d671fd790e9962674a58008bbc0bf159605029db4a34a68028aaaa08837e6b" +dependencies = [ + "async-stream", + "base64 0.22.1", + "bytes", + "futures", + "http 1.3.1", + "http-body 1.0.1", + "http-body-util", + "http-serde", + "hyper 1.6.0", + "hyper-util", + "lambda_runtime_api_client 0.12.1", + "pin-project", + "serde", + "serde_json", + "serde_path_to_error", + "tokio", + "tokio-stream", + "tower 0.5.2", + "tower-layer", + "tracing", +] + [[package]] name = "lambda_runtime_api_client" version = "0.11.1" @@ -2031,6 +2059,27 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "lambda_runtime_api_client" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64234fb6987f347c13c242bf8a847544030fd94145a1004ecd567cc342f832d5" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http 1.3.1", + "http-body 1.0.1", + "http-body-util", + "hyper 1.6.0", + "hyper-util", + "tokio", + "tower 0.5.2", + "tower-service", + "tracing", + "tracing-subscriber", +] + [[package]] name = "lazy_static" version = "1.5.0" diff --git a/cloud-scanner-lambda/Cargo.toml b/cloud-scanner-lambda/Cargo.toml index d6f0139..0b5d348 100644 --- a/cloud-scanner-lambda/Cargo.toml +++ b/cloud-scanner-lambda/Cargo.toml @@ -27,7 +27,7 @@ default-features = false features = ["apigw_rest", "alb"] [dependencies.lambda_runtime] -version = "0.13.0" +version = "0.14.1" [dependencies.serde] features = ["derive"]