From ff066ccf092b5cf741761eb1e26ca6b84fa37a38 Mon Sep 17 00:00:00 2001 From: Luca Cominardi Date: Mon, 17 Jun 2024 15:05:15 +0200 Subject: [PATCH] Enable internal feature for zenoh-config --- commons/zenoh-config/Cargo.toml | 2 +- zenoh/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commons/zenoh-config/Cargo.toml b/commons/zenoh-config/Cargo.toml index 6265eb6bc9..49c9d722f1 100644 --- a/commons/zenoh-config/Cargo.toml +++ b/commons/zenoh-config/Cargo.toml @@ -24,7 +24,7 @@ categories = { workspace = true } description = "Internal crate for zenoh." [features] -unstable = [] +internal = [] [dependencies] tracing = { workspace = true } diff --git a/zenoh/Cargo.toml b/zenoh/Cargo.toml index c7da78b8a3..559220e734 100644 --- a/zenoh/Cargo.toml +++ b/zenoh/Cargo.toml @@ -43,7 +43,7 @@ default = [ "transport_unixsock-stream", "transport_ws", ] -internal = ["zenoh-keyexpr/internal"] +internal = ["zenoh-keyexpr/internal", "zenoh-config/internal"] plugins = [] shared-memory = [ "zenoh-shm", @@ -63,7 +63,7 @@ transport_udp = ["zenoh-transport/transport_udp"] transport_unixsock-stream = ["zenoh-transport/transport_unixsock-stream"] transport_ws = ["zenoh-transport/transport_ws"] transport_vsock = ["zenoh-transport/transport_vsock"] -unstable = ["zenoh-keyexpr/unstable", "zenoh-config/unstable"] +unstable = ["zenoh-keyexpr/unstable"] [dependencies] tokio = { workspace = true, features = ["rt", "macros", "time"] }