From f2d8cd8e1a392213f3781cbc13c325fded52c97d Mon Sep 17 00:00:00 2001 From: yellowhatter Date: Fri, 16 May 2025 10:29:50 +0300 Subject: [PATCH] fix std feature propagation for zenoh-buffers --- commons/zenoh-codec/Cargo.toml | 3 ++- commons/zenoh-protocol/Cargo.toml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/commons/zenoh-codec/Cargo.toml b/commons/zenoh-codec/Cargo.toml index bafff7da60..b2fe804493 100644 --- a/commons/zenoh-codec/Cargo.toml +++ b/commons/zenoh-codec/Cargo.toml @@ -33,7 +33,8 @@ default = ["std"] std = [ "tracing", "uhlc/std", - "zenoh-protocol/std" + "zenoh-protocol/std", + "zenoh-buffers/std" ] shared-memory = [ "std", diff --git a/commons/zenoh-protocol/Cargo.toml b/commons/zenoh-protocol/Cargo.toml index 11101acb26..d4fda00031 100644 --- a/commons/zenoh-protocol/Cargo.toml +++ b/commons/zenoh-protocol/Cargo.toml @@ -33,6 +33,7 @@ std = [ "uhlc/std", "zenoh-keyexpr/std", "zenoh-result/std", + "zenoh-buffers/std", ] shared-memory = ["std", "zenoh-buffers/shared-memory"] test = ["rand", "zenoh-buffers/test"]