From 60a7b1b2d620ad9e46ddec4e236f098474ee0c96 Mon Sep 17 00:00:00 2001 From: yuanyuyuan Date: Thu, 2 May 2024 16:50:01 +0800 Subject: [PATCH] fix: add the missing unstable feature --- zenoh/Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zenoh/Cargo.toml b/zenoh/Cargo.toml index 7c9288731f..958a74701b 100644 --- a/zenoh/Cargo.toml +++ b/zenoh/Cargo.toml @@ -109,6 +109,10 @@ zenoh-util = { workspace = true } zenoh-runtime = { workspace = true } zenoh-task = { workspace = true } +[dev-dependencies] +# Enable the unstable feature for the tests +zenoh = { workspace = true, features = ["unstable"] } + [build-dependencies] rustc_version = { workspace = true }