Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name = "up-transport-zenoh"
readme = "README.md"
repository = "https://github.com/eclipse-uprotocol/up-transport-zenoh-rust"
rust-version = "1.85"
version = "0.7.0"
version = "0.8.0"

[lints.clippy]
all = "deny"
Expand All @@ -43,8 +43,8 @@ zenoh = { version = "1.5.0" }

[dev-dependencies]
chrono = "0.4.41"
clap = { version = "4.5.40", features = ["derive"] }
serde_json = "1.0.128"
clap = { version = "4.5.42", features = ["derive"] }
serde_json = "1.0.142"
serial_test = { version = "3.2.0" }
test-case = { version = "3.3" }
tokio = { version = "1.45.1", default-features = false, features = ["rt-multi-thread", "signal"] }
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,11 @@ The example configuration file is located in the [config folder](config).

Most developers will want to create an instance of the *UPTransportZenoh* struct and use it with the Communication Level API and its default implementation which are provided by the *up-rust* library.

The libraries need to be added to the `[dependencies]` section of the `Cargo.toml` file:
Both libraries need to be added as dependencies to your crate, e.g. using the following commands:

```toml
[dependencies]
up-rust = { version = "0.6" }
up-transport-zenoh = { version = "0.7" }
```sh
cargo add up-rust
cargo add up-transport-zenoh
```

Please refer to the [publisher](/examples/publisher.rs) and [subscriber](/examples/subscriber.rs) examples to see how to initialize and use the transport.
Expand Down