Skip to content

Commit

Permalink
Remove 'unstable' and 'internal' features of Zenoh now that no longer…
Browse files Browse the repository at this point in the history
… needed.
  • Loading branch information
PLeVasseur committed Nov 12, 2024
1 parent cb8e4e2 commit c8c1ce5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion example-streamer-uses/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ tokio = { workspace = true }
up-rust = { workspace = true }
up-transport-zenoh = { version = "0.3.0" }
up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.3.0", default-features = false }
zenoh = { version = "1.0.0", features = ["unstable", "internal"] }
zenoh = { version = "1.0.0" }
12 changes: 6 additions & 6 deletions up-linux-streamer-plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ keywords.workspace = true
license.workspace = true

[features]
default = ["bundled-vsomeip", "dynamic_plugin", "zenoh/default", "zenoh/unstable", "zenoh/plugins"]
default = ["bundled-vsomeip", "dynamic_plugin"]
bundled-vsomeip = ["up-transport-vsomeip/bundled"]
dynamic_plugin = []

[lib]
# When auto-detecting the "example" plugin, `zenohd` will look for a dynamic library named "zenoh_plugin_example"
# When auto-detecting the "up_linux_streamer" plugin, `zenohd` will look for a dynamic library named "zenoh_plugin_up_linux_streamer"
# `zenohd` will expect the file to be named according to OS conventions:
# - libzenoh_plugin_example.so on linux
# - libzenoh_plugin_example.dylib on macOS
# - zenoh_plugin_example.dll on Windows
# - libzenoh_plugin_up_linux_streamer.so on linux
# - libzenoh_plugin_up_linux_streamer.dylib on macOS
# - zenoh_plugin_up_linux_streamer.dll on Windows
name = "zenoh_plugin_up_linux_streamer"
# This crate type will make `cargo` output a dynamic library instead of a rust static library
crate-type = ["cdylib"]
Expand All @@ -48,7 +48,7 @@ up-transport-zenoh = { version = "0.3.0" }
up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.3.0", default-features = false }
up-streamer = { path = "../up-streamer" }
usubscription-static-file = {path = "../utils/usubscription-static-file"}
zenoh = { version = "1.0.0", features = ["unstable", "internal", "plugins"] }
zenoh = { version = "1.0.0", features = ["default", "plugins"] }
zenoh-core = { version = "1.0.0" }
zenoh-plugin-trait = { version = "1.0.0" }
zenoh-result = { version = "1.0.0" }
Expand Down
2 changes: 1 addition & 1 deletion up-linux-streamer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ up-rust = { workspace = true }
up-streamer = { path = "../up-streamer" }
up-transport-zenoh = { version = "0.3.0" }
up-transport-vsomeip = { git = "https://github.com/eclipse-uprotocol/up-transport-vsomeip-rust.git", tag = "v0.3.0", default-features = false }
zenoh = { version = "1.0.0", features = ["unstable", "internal"] }
zenoh = { version = "1.0.0" }
usubscription-static-file = {path = "../utils/usubscription-static-file"}

[dev-dependencies]
Expand Down

0 comments on commit c8c1ce5

Please sign in to comment.