We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f0ecde commit ae0450eCopy full SHA for ae0450e
zenoh-plugin-mqtt/Cargo.toml
@@ -27,8 +27,8 @@ name = "zenoh_plugin_mqtt"
27
crate-type = ["cdylib", "rlib"]
28
29
[features]
30
-default = ["no_mangle"]
31
-no_mangle = []
+default = ["dynamic_plugin"]
+dynamic_plugin = []
32
stats = ["zenoh/stats"]
33
34
[dependencies]
zenoh-plugin-mqtt/src/lib.rs
@@ -57,7 +57,7 @@ lazy_static::lazy_static! {
57
static ref ADMIN_SPACE_KE_CONFIG: &'static keyexpr = ke_for_sure!("config");
58
}
59
60
-#[cfg(feature = "no_mangle")]
+#[cfg(feature = "dynamic_plugin")]
61
zenoh_plugin_trait::declare_plugin!(MqttPlugin);
62
63
pub struct MqttPlugin;
0 commit comments