https://github.com/eclipse-uprotocol/up-zenoh-example-rust
Example code for zenoh using up-transport-zenoh-rust
https://github.com/eclipse-uprotocol/up-zenoh-example-rust
example rust uprotocol zenoh
Last synced: 6 months ago
JSON representation
Example code for zenoh using up-transport-zenoh-rust
- Host: GitHub
- URL: https://github.com/eclipse-uprotocol/up-zenoh-example-rust
- Owner: eclipse-uprotocol
- License: apache-2.0
- Created: 2024-03-07T18:54:42.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-11T03:03:58.000Z (over 1 year ago)
- Last Synced: 2025-01-20T22:49:51.070Z (about 1 year ago)
- Topics: example, rust, uprotocol, zenoh
- Language: Rust
- Size: 27.3 KB
- Stars: 0
- Watchers: 7
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.adoc
- License: LICENSE
Awesome Lists containing this project
README
# up-zenoh-example-rust
**NOTE**: The repository is no longer available since the examples is moved back to [up-transport-zenoh-rust](https://github.com/eclipse-uprotocol/up-transport-zenoh-rust) now
Example code of using [up-transport-zenoh-rust](https://github.com/eclipse-uprotocol/up-transport-zenoh-rust)
## Build
```shell
# Check clippy
cargo clippy --all-targets
# Build
cargo build
```
## Run examples
```shell
# Publisher
cargo run --bin publisher
# Subscriber
cargo run --bin subscriber
# RPC Server
cargo run --bin rpc_server
# RPC Client
cargo run --bin rpc_client
```