Skip to content

Commit ae0450e

Browse files
committed
chore: renamed no_mangle feature to dynamic_plugin
Signed-off-by: gabrik <[email protected]>
1 parent 4f0ecde commit ae0450e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

zenoh-plugin-mqtt/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ name = "zenoh_plugin_mqtt"
2727
crate-type = ["cdylib", "rlib"]
2828

2929
[features]
30-
default = ["no_mangle"]
31-
no_mangle = []
30+
default = ["dynamic_plugin"]
31+
dynamic_plugin = []
3232
stats = ["zenoh/stats"]
3333

3434
[dependencies]

zenoh-plugin-mqtt/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ lazy_static::lazy_static! {
5757
static ref ADMIN_SPACE_KE_CONFIG: &'static keyexpr = ke_for_sure!("config");
5858
}
5959

60-
#[cfg(feature = "no_mangle")]
60+
#[cfg(feature = "dynamic_plugin")]
6161
zenoh_plugin_trait::declare_plugin!(MqttPlugin);
6262

6363
pub struct MqttPlugin;

0 commit comments

Comments
 (0)