From 2fdddae537c3038c9222dadc2423d9fb82b324f8 Mon Sep 17 00:00:00 2001 From: Mahmoud Mazouz Date: Tue, 23 Apr 2024 13:34:17 +0200 Subject: [PATCH] fix: Enable `unstable` and `plugins` features in plugins (#965) --- plugins/zenoh-plugin-example/Cargo.toml | 2 +- plugins/zenoh-plugin-rest/Cargo.toml | 2 +- plugins/zenoh-plugin-storage-manager/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/zenoh-plugin-example/Cargo.toml b/plugins/zenoh-plugin-example/Cargo.toml index 8e6814590f..ce12dbf18e 100644 --- a/plugins/zenoh-plugin-example/Cargo.toml +++ b/plugins/zenoh-plugin-example/Cargo.toml @@ -20,7 +20,7 @@ edition = { workspace = true } publish = false [features] -default = ["no_mangle", "zenoh/default"] +default = ["no_mangle", "zenoh/default", "zenoh/unstable", "zenoh/plugins"] no_mangle = [] [lib] diff --git a/plugins/zenoh-plugin-rest/Cargo.toml b/plugins/zenoh-plugin-rest/Cargo.toml index 19fa9eafdc..8d88368643 100644 --- a/plugins/zenoh-plugin-rest/Cargo.toml +++ b/plugins/zenoh-plugin-rest/Cargo.toml @@ -24,7 +24,7 @@ categories = ["network-programming", "web-programming::http-server"] description = "The zenoh REST plugin" [features] -default = ["no_mangle", "zenoh/default"] +default = ["no_mangle", "zenoh/default", "zenoh/unstable", "zenoh/plugins"] no_mangle = [] [lib] diff --git a/plugins/zenoh-plugin-storage-manager/Cargo.toml b/plugins/zenoh-plugin-storage-manager/Cargo.toml index 35a5232cf0..1e37093a78 100644 --- a/plugins/zenoh-plugin-storage-manager/Cargo.toml +++ b/plugins/zenoh-plugin-storage-manager/Cargo.toml @@ -24,7 +24,7 @@ categories = { workspace = true } description = "The zenoh storages plugin." [features] -default = ["no_mangle", "zenoh/default"] +default = ["no_mangle", "zenoh/default", "zenoh/unstable", "zenoh/plugins"] no_mangle = [] [lib]