diff --git a/Cargo.toml b/Cargo.toml index 0cb16194d5..def96aebac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ members = [ "io/zenoh-links/zenoh-link-ws/", "io/zenoh-links/zenoh-link-unixpipe/", "io/zenoh-transport", - "plugins/example-plugin", + "plugins/zenoh-plugin-example", "plugins/zenoh-backend-traits", "plugins/zenoh-plugin-rest", "plugins/zenoh-plugin-storage-manager", diff --git a/plugins/example-plugin/Cargo.toml b/plugins/zenoh-plugin-example/Cargo.toml similarity index 96% rename from plugins/example-plugin/Cargo.toml rename to plugins/zenoh-plugin-example/Cargo.toml index 0a315b7a35..fdf9786a48 100644 --- a/plugins/example-plugin/Cargo.toml +++ b/plugins/zenoh-plugin-example/Cargo.toml @@ -36,7 +36,7 @@ env_logger = { workspace = true } futures = { workspace = true } log = { workspace = true } serde_json = { workspace = true } -zenoh = { workspace = true } +zenoh = { workspace = true, features = ["unstable"] } zenoh-core = { workspace = true } zenoh-plugin-trait = { workspace = true } zenoh-result = { workspace = true } diff --git a/plugins/example-plugin/README.md b/plugins/zenoh-plugin-example/README.md similarity index 100% rename from plugins/example-plugin/README.md rename to plugins/zenoh-plugin-example/README.md diff --git a/plugins/example-plugin/src/lib.rs b/plugins/zenoh-plugin-example/src/lib.rs similarity index 100% rename from plugins/example-plugin/src/lib.rs rename to plugins/zenoh-plugin-example/src/lib.rs