Skip to content

Commit

Permalink
Allow disabling tracing feature
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
yotamofek authored Apr 3, 2024
1 parent 115822a commit 19f883a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 19f883a

Please sign in to comment.