From 19f883a77a894e5a6962ea269477318089d3feaa Mon Sep 17 00:00:00 2001 From: Yotam Ofek Date: Wed, 3 Apr 2024 22:04:50 +0300 Subject: [PATCH] Allow disabling `tracing` feature Without this PR, the `tracing` in the `lambda_runtime_api_client` is not really optional, when that crate is added to the dep tree by the main `lambda_runtime` crate. --- lambda-runtime/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda-runtime/Cargo.toml b/lambda-runtime/Cargo.toml index 8745b59f..c4b8e35b 100644 --- a/lambda-runtime/Cargo.toml +++ b/lambda-runtime/Cargo.toml @@ -36,7 +36,7 @@ hyper-util = { workspace = true, features = [ "http1", "tokio", ] } -lambda_runtime_api_client = { version = "0.11", path = "../lambda-runtime-api-client" } +lambda_runtime_api_client = { version = "0.11", path = "../lambda-runtime-api-client", default-features = false } pin-project = "1" serde = { version = "1", features = ["derive", "rc"] } serde_json = "^1"