Skip to content

Commit f60219d

Browse files
committed
chore: resolve conflicts
1 parent f89a8f2 commit f60219d

File tree

3 files changed

+38
-36
lines changed

3 files changed

+38
-36
lines changed

Cargo.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,19 +48,19 @@ secrecy = { version = "0.8.0", features = ["alloc", "serde"] }
4848
serde = "1.0.154"
4949
serde_json = "1.0.94"
5050
tracing = "0.1"
51-
zenoh = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
51+
zenoh = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "fix/1059-add-plugin-id", features = [
5252
"plugins",
5353
"unstable",
5454
] }
55-
zenoh-collections = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
56-
zenoh-core = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
57-
zenoh-ext = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
55+
zenoh-collections = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "fix/1059-add-plugin-id" }
56+
zenoh-core = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "fix/1059-add-plugin-id" }
57+
zenoh-ext = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "fix/1059-add-plugin-id", features = [
5858
"unstable",
5959
] }
6060
zenoh-plugin-mqtt = { version = "0.11.0-dev", path = "zenoh-plugin-mqtt/", default-features = false }
61-
zenoh-plugin-rest = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
62-
zenoh-plugin-trait = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
63-
zenoh-util = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
61+
zenoh-plugin-rest = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "fix/1059-add-plugin-id", default-features = false }
62+
zenoh-plugin-trait = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "fix/1059-add-plugin-id", default-features = false }
63+
zenoh-util = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "fix/1059-add-plugin-id" }
6464

6565
[profile.release]
6666
codegen-units = 1

zenoh-bridge-mqtt/src/main.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,11 +208,13 @@ async fn main() {
208208

209209
// declare REST plugin if specified in conf
210210
if config.plugin("rest").is_some() {
211-
plugins_mgr = plugins_mgr.declare_static_plugin::<zenoh_plugin_rest::RestPlugin>(true);
211+
plugins_mgr =
212+
plugins_mgr.declare_static_plugin::<zenoh_plugin_rest::RestPlugin, &str>("rest", true);
212213
}
213214

214215
// declare ROS2DDS plugin
215-
plugins_mgr = plugins_mgr.declare_static_plugin::<zenoh_plugin_mqtt::MqttPlugin>(true);
216+
plugins_mgr =
217+
plugins_mgr.declare_static_plugin::<zenoh_plugin_mqtt::MqttPlugin, &str>("mqtt", true);
216218

217219
// create a zenoh Runtime.
218220
let mut runtime = match RuntimeBuilder::new(config)

0 commit comments

Comments
 (0)