Skip to content

Commit c8c1ce5

Browse files
committed
Remove 'unstable' and 'internal' features of Zenoh now that no longer needed.
1 parent cb8e4e2 commit c8c1ce5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

example-streamer-uses/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ tokio = { workspace = true }
5757
up-rust = { workspace = true }
5858
up-transport-zenoh = { version = "0.3.0" }
5959
up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.3.0", default-features = false }
60-
zenoh = { version = "1.0.0", features = ["unstable", "internal"] }
60+
zenoh = { version = "1.0.0" }

up-linux-streamer-plugin/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ keywords.workspace = true
2020
license.workspace = true
2121

2222
[features]
23-
default = ["bundled-vsomeip", "dynamic_plugin", "zenoh/default", "zenoh/unstable", "zenoh/plugins"]
23+
default = ["bundled-vsomeip", "dynamic_plugin"]
2424
bundled-vsomeip = ["up-transport-vsomeip/bundled"]
2525
dynamic_plugin = []
2626

2727
[lib]
28-
# When auto-detecting the "example" plugin, `zenohd` will look for a dynamic library named "zenoh_plugin_example"
28+
# When auto-detecting the "up_linux_streamer" plugin, `zenohd` will look for a dynamic library named "zenoh_plugin_up_linux_streamer"
2929
# `zenohd` will expect the file to be named according to OS conventions:
30-
# - libzenoh_plugin_example.so on linux
31-
# - libzenoh_plugin_example.dylib on macOS
32-
# - zenoh_plugin_example.dll on Windows
30+
# - libzenoh_plugin_up_linux_streamer.so on linux
31+
# - libzenoh_plugin_up_linux_streamer.dylib on macOS
32+
# - zenoh_plugin_up_linux_streamer.dll on Windows
3333
name = "zenoh_plugin_up_linux_streamer"
3434
# This crate type will make `cargo` output a dynamic library instead of a rust static library
3535
crate-type = ["cdylib"]
@@ -48,7 +48,7 @@ up-transport-zenoh = { version = "0.3.0" }
4848
up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.3.0", default-features = false }
4949
up-streamer = { path = "../up-streamer" }
5050
usubscription-static-file = {path = "../utils/usubscription-static-file"}
51-
zenoh = { version = "1.0.0", features = ["unstable", "internal", "plugins"] }
51+
zenoh = { version = "1.0.0", features = ["default", "plugins"] }
5252
zenoh-core = { version = "1.0.0" }
5353
zenoh-plugin-trait = { version = "1.0.0" }
5454
zenoh-result = { version = "1.0.0" }

up-linux-streamer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ up-rust = { workspace = true }
3737
up-streamer = { path = "../up-streamer" }
3838
up-transport-zenoh = { version = "0.3.0" }
3939
up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.3.0", default-features = false }
40-
zenoh = { version = "1.0.0", features = ["unstable", "internal"] }
40+
zenoh = { version = "1.0.0" }
4141
usubscription-static-file = {path = "../utils/usubscription-static-file"}
4242

4343
[dev-dependencies]

0 commit comments

Comments
 (0)