From 3f18eecd44d803b71bc1a7de6acc2a54b643526f Mon Sep 17 00:00:00 2001 From: Maxime David Date: Tue, 19 Nov 2024 09:01:04 +0000 Subject: [PATCH] fix: add semconv_experimental flag (#943) --- 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 f67eccc8..b4a7ad3d 100644 --- a/lambda-runtime/Cargo.toml +++ b/lambda-runtime/Cargo.toml @@ -41,7 +41,7 @@ hyper-util = { workspace = true, features = [ ] } lambda_runtime_api_client = { version = "0.11.1", path = "../lambda-runtime-api-client", default-features = false } miette = { version = "7.2.0", optional = true } -opentelemetry-semantic-conventions = { version = "0.27", optional = true } +opentelemetry-semantic-conventions = { version = "0.27", optional = true, features = ["semconv_experimental"] } pin-project = "1" serde = { version = "1", features = ["derive", "rc"] } serde_json = "^1"